Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Find the second maximum in an array?

Answer Posted / gang

public void getSecondMax(double[] arr){
double fmax, smax;
fmax=arr[0];
smax=arr[1];

for (int i = 1; i < arr.length; i++) {
if (arr[i]>fmax){
smax = fmax;
fmax = arr[i];
}
else if (arr[i]>smax)
smax = arr[i];


}

System.out.println("The 1st
highest="+fmax+"\t"+"The 2nd highest="+smax);
}

Note that it would not work if the array's size is only 1.

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between static and dynamic binding of functions?

1020


Is atoi safe?

1023


What is copy constructor? Can we make copy constructor private in c++?

1048


Define Virtual function in C++.

1058


What can I safely assume about the initial values of variables which are not explicitly initialized?

1028


What is the need of a destructor? Explain with the help of an example.

986


What is private, public and protected inheritance?

1058


What is dev c++ used for?

997


What is the type of 'this' pointer? When does it get created?

928


Difference between pointer to constant vs. Pointer constant

1081


Explain the difference between c++ and java.

1077


What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?

1136


Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.

1033


What is static class data?

1020


What is a container class? What are the types of container classes in c++?

1196