Pergunta de entrevista da empresa Raja Software Labs

How to find the second highest number in an integer array, without sorting the array?

Respostas da entrevista

Sigiloso

27 de jun. de 2018

can you plz share the whole process and all questions?

4

Sigiloso

15 de abr. de 2019

public static void secondLargest(){ int arr[] = {50,80,70,2,35,10,3,30,28,100}; int first = 0, second = 0; for(int i=0;ifirst){ second = first; first = arr[i]; } else if(arr[i]>second) second = arr[i]; } System.out.print("Sec Largest : "+second); }

3