在给定的数组中,如何找到第二个、第三个、第四个或第五个值?
另外,如果我们
max()
在 python 中使用该函数,那么复杂度的顺序是什么,即与此函数相关联max()
?
.
def nth_largest(li,n):
li.remove(max(li))
print max(ele) //will give me the second largest
#how to make a general algorithm to find the 2nd,3rd,4th highest value
#n is the element to be found below the highest value