Is there a way in linear time by which we can find which is the second largest element of an array ? Array elements can be positive, negative or zero. Elements can be repetitive. No STLs allowed. Python can be used.
Solution : Sort the array and take the second element but Sorting not allowed
Modification : By definition second largest element will be the one which is numerically smaller. Like if we have
Arr = {5,5,4,3,1} Then second largest is 4
Addition Lets say if i want to generalize the question to kth largest and complexity less than linear like nlogn, what can be the solution.
n long ntime? – Arlen Apr 12 '11 at 7:313,4,5,5is4or5the second largest element? – edA-qa mort-ora-y Apr 12 '11 at 7:55n lognthanks. – Codeanu Apr 12 '11 at 13:27O(n) < O(n long n)– Arlen Apr 12 '11 at 21:28