Find Second Largest Number in Array

In this tutorial, I am going to discuss the easiest way to find second largest number in array.

Given an array of integers. The array is unsorted. Write a java code to find second highest number in an array.

For example –

Input – arr[] = { 1, 9, 5, 2, 8, -1, 3, 55}

Output: 9

In this example, we have given an unsorted array of integers. The second largest number in this array is 9.

This problem is itself not very tough. But how do you approach this kind of problems tells lot about your problem solving ability.

For solving any kind of problems time and space complexity is an important factor. Try to solve this problem in a minimum time complexity.

In this tutorial, I am going to discuss multiple approaches and their time complexities to solve this problem.

Before checking the solution think how do you approach this problem. Which approach you prefer and why?

How to Find Second Largest Element in Array?

The easiest way to solve this problem is to sort an array.  After sorting an array, the number present at n-2 index is the second highest number in an array.

Programming Video Tutorials

Bubble Sort Program in Java

Insertion Sort Program in Java

For sorting either we can write our own custom sort method using sorting algorithms or we can use java inbuilt sort method.

The time complexity of sorting an array is O(nlogn).

NOTE: If the element of an array is repeated then this approach won’t work.

To understand this concept, let’s take an example.

int num[] = {1, 9, 5, 55, 8, -1, 3, 55};

So what will be the second highest number if we use above method (sort and pick the element present at n-2 index). The element is 55 which is wrong.

The best approach is to traverse an array once to find second highest number. Let’s implement this approach.

Find second largest number in an array

Find Second Largest Number in Array without Sorting – Java Code

The idea here is to traverse an array once. Declare two variables highest and secondHighest. Initially, Assign them with Integer minimum possible value.

In each iteration, Compare the value present at current index with highest and secondHighest variable. If current value is greater than the highest then assign highest value in second highest and current value in highest variable.

The time complexity of this approach is O(n).

Find Second Max in an Array : Video Tutorial

In this video tutorial, I have explained how we can find second highest number without sorting an array.

Find second largest number in an array – video tutorial

Java program to find the first non-repeated character in a string

Find pair of elements in an array whose sum is equal to a given number

I have discussed two approaches to solve this problem. If you know some other better way to solve this problem then you can discuss with us through your comments.

Tagged , . Bookmark the permalink.

About WebRewrite

I am technology lover who loves to keep updated with latest technology. My interest field is Web Development.