📜  Python – 列表中的最大商对

📅  最后修改于: 2022-05-13 01:54:34.485000             🧑  作者: Mango

Python – 列表中的最大商对

有时,我们需要找到得到最大商的对的具体问题,这可以通过排序并获取列表的第一个和最后一个元素来解决。但是在某些情况下,我们不需要更改列表的顺序并在不使用额外空间的情况下在类似的列表中执行一些操作。让我们讨论可以执行此操作的某些方式。

方法 #1:使用列表理解 + max() + combination() + lambda
可以使用上述函数的组合来执行此特定任务,其中我们使用列表推导来绑定所有功能,使用 max函数来获得最大商,组合函数在内部找到所有商,而 lambda函数用于计算商。

# Python3 code to demonstrate
# Maximum Quotient Pair in List
# using list comprehension + max() + combinations() + lambda
from itertools import combinations
  
# initializing list
test_list = [3, 4, 1, 7, 9, 1]
  
# printing original list
print("The original list : " + str(test_list))
  
# using list comprehension + max() + combinations() + lambda
# Maximum Quotient Pair in List
res = max(combinations(test_list, 2), key = lambda sub: sub[0] // sub[1])
  
# print result
print("The maximum quotient pair is : " + str(res))
输出 :
The original list : [3, 4, 1, 7, 9, 1]
The maximum quotient pair is : (9, 1)

方法 #2:使用列表理解 + nlargest() + combination() + lambda
该方法不仅可以找到单个最大值,还可以在需要时找到 k 个最大商对,并使用 nlargest函数而不是 max函数来实现此功能。

# Python3 code to demonstrate
# Maximum Quotient Pair in List
# using list comprehension + nlargest() + combinations() + lambda
from itertools import combinations
from heapq import nlargest
  
# initializing list
test_list = [3, 4, 1, 7, 9, 1]
  
# printing original list
print("The original list : " + str(test_list))
  
# using list comprehension + max() + combinations() + lambda
# Maximum Quotient Pair in List
# computes 2 maximum pair differences
res = nlargest(2, combinations(test_list, 2), key = lambda sub: sub[0] // sub[1])
  
# print result
print("The maximum quotient pair is : " + str(res))
输出 :
The original list : [3, 4, 1, 7, 9, 1]
The maximum quotient pair is : (9, 1)