在Python中查找元组列表中的最大值

时间:2012-10-30 18:24:02

标签: python list tuples

  

可能重复:
  Sorting or Finding Max Value by the second element in a nested list. Python

我有一个包含~10 ^ 6个元组的列表,如下所示:

[(101, 153), (255, 827), (361, 961), ...]
  ^     ^
  X     Y

我想在此列表中找到Y的最大值,但也想知道它绑定的X.

我该怎么做?

3 个答案:

答案 0 :(得分:126)

使用max()


使用itemgetter()

In [53]: lis=[(101, 153), (255, 827), (361, 961)]

In [81]: from operator import itemgetter

In [82]: max(lis,key=itemgetter(1))[0]    #faster solution
Out[82]: 361

使用lambda

In [54]: max(lis,key=lambda item:item[1])
Out[54]: (361, 961)

In [55]: max(lis,key=lambda item:item[1])[0]
Out[55]: 361

timeit比较:

In [30]: %timeit max(lis,key=itemgetter(1))
1000 loops, best of 3: 232 us per loop

In [31]: %timeit max(lis,key=lambda item:item[1])
1000 loops, best of 3: 556 us per loop

答案 1 :(得分:4)

除了max之外,您还可以进行排序:

>>> lis
[(101, 153), (255, 827), (361, 961)]
>>> sorted(lis,key=lambda x: x[1], reverse=True)[0]
(361, 961)

答案 2 :(得分:0)

你可以循环遍历列表并将元组保存在变量中,然后你可以看到来自同一变量的两个值......

num=(0, 0)
for item in tuplelist:
  if item[1]>num[1]:
    num=item #num has the whole tuple with the highest y value and its x value