Given a Linked list of integer data. The task is to write a program that efficiently finds the second largest element present in the Linked List.
Examples:
Input : List = 12 -> 35 -> 1 -> 10 -> 34 -> 1
Output : The second largest element is 34.
Input : List = 10 -> 5 -> 10
Output : The second largest element is 5.
A Simple Solution will be to first sort the linked list in descending order and then print the second element from the sorted linked list. The time complexity of this solution is O(nlogn).
A Better Solution is to traverse the Linked list twice. In the first traversal find the maximum element. In the second traversal find the greatest element less than the element obtained in first traversal. The time complexity of this solution is O(n).
A more Efficient Solution can be to find the second largest element in a single traversal.
Below is the complete algorithm for doing this:
1) Initialize two variables first and second to INT_MIN as,
first = second = INT_MIN
2) Start traversing the Linked List,
a) If the current element in Linked List say list[i] is greater
than first. Then update first and second as,
second = first
first = list[i]
b) If the current element is in between first and second,
then update second to store the value of current variable as
second = list[i]
3) Return the value stored in second node.
Below is the implementation of the above approach:
C++
#include <climits>
#include <iostream>
using namespace std;
struct Node {
int data;
struct Node* next;
};
void push( struct Node** head_ref, int new_data)
{
struct Node* new_node = ( struct Node*) malloc ( sizeof ( struct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
(*head_ref) = new_node;
}
int listSize( struct Node* node)
{
int count = 0;
while (node != NULL) {
count++;
node = node->next;
}
return count;
}
void print2largest( struct Node* head)
{
int i, first, second;
int list_size = listSize(head);
if (list_size < 2) {
cout << "Invalid Input" ;
return ;
}
first = second = INT_MIN;
struct Node* temp = head;
while (temp != NULL) {
if (temp->data > first) {
second = first;
first = temp->data;
}
else if (temp->data > second && temp->data != first)
second = temp->data;
temp = temp->next;
}
if (second == INT_MIN)
cout << "There is no second largest element\n" ;
else
cout << "The second largest element is " << second;
}
int main()
{
struct Node* start = NULL;
push(&start, 1);
push(&start, 34);
push(&start, 10);
push(&start, 1);
push(&start, 35);
push(&start, 12);
print2largest(start);
return 0;
}
|
Java
class GFG
{
static class Node
{
int data;
Node next;
};
static Node push( Node head_ref, int new_data)
{
Node new_node = new Node();
new_node.data = new_data;
new_node.next = (head_ref);
(head_ref) = new_node;
return head_ref;
}
static int listSize( Node node)
{
int count = 0 ;
while (node != null )
{
count++;
node = node.next;
}
return count;
}
static void print2largest( Node head)
{
int i, first, second;
int list_size = listSize(head);
if (list_size < 2 )
{
System.out.print( "Invalid Input" );
return ;
}
first = second = Integer.MIN_VALUE;
Node temp = head;
while (temp != null )
{
if (temp.data > first)
{
second = first;
first = temp.data;
}
else if (temp.data > second && temp.data != first)
second = temp.data;
temp = temp.next;
}
if (second == Integer.MIN_VALUE)
System.out.print( "There is no second largest element\n" );
else
System.out.print ( "The second largest element is " + second);
}
public static void main(String args[])
{
Node start = null ;
start=push(start, 1 );
start=push(start, 34 );
start=push(start, 10 );
start=push(start, 1 );
start=push(start, 35 );
start=push(start, 12 );
print2largest(start);
}
}
|
Python3
class Node :
def __init__( self ):
self .data = 0
self . next = None
def push( head_ref, new_data) :
new_node = Node()
new_node.data = new_data
new_node. next = (head_ref)
(head_ref) = new_node
return head_ref
def listSize( node):
count = 0
while (node ! = None ):
count = count + 1
node = node. next
return count
def print2largest( head):
i = 0
first = 0
second = 0
list_size = listSize(head)
if (list_size < 2 ) :
print ( "Invalid Input" )
return
first = second = - 323767
temp = head
while (temp ! = None ):
if (temp.data > first) :
second = first
first = temp.data
elif (temp.data > second and temp.data ! = first) :
second = temp.data
temp = temp. next
if (second = = - 323767 ) :
print ( "There is no second largest element\n" )
else :
print ( "The second largest element is " , second)
start = None
start = push(start, 1 )
start = push(start, 34 )
start = push(start, 10 )
start = push(start, 1 )
start = push(start, 35 )
start = push(start, 12 )
print2largest(start)
|
C#
using System;
class GFG
{
public class Node
{
public int data;
public Node next;
};
static Node push( Node head_ref, int new_data)
{
Node new_node = new Node();
new_node.data = new_data;
new_node.next = (head_ref);
(head_ref) = new_node;
return head_ref;
}
static int listSize( Node node)
{
int count = 0;
while (node != null )
{
count++;
node = node.next;
}
return count;
}
static void print2largest(Node head)
{
int first, second;
int list_size = listSize(head);
if (list_size < 2)
{
Console.Write( "Invalid Input" );
return ;
}
first = second = int .MinValue;
Node temp = head;
while (temp != null )
{
if (temp.data > first)
{
second = first;
first = temp.data;
}
else if (temp.data > second &&
temp.data != first)
second = temp.data;
temp = temp.next;
}
if (second == int .MinValue)
Console.Write( "There is no second" +
" largest element\n" );
else
Console.Write( "The second largest " +
"element is " + second);
}
public static void Main(String []args)
{
Node start = null ;
start = push(start, 1);
start = push(start, 34);
start = push(start, 10);
start = push(start, 1);
start = push(start, 35);
start = push(start, 12);
print2largest(start);
}
}
|
Javascript
<script>
class Node {
constructor() {
this .data = 0;
this .next = null ;
}
}
function push(head_ref, new_data) {
var new_node = new Node();
new_node.data = new_data;
new_node.next = head_ref;
head_ref = new_node;
return head_ref;
}
function listSize(node) {
var count = 0;
while (node != null ) {
count++;
node = node.next;
}
return count;
}
function print2largest(head) {
var first, second;
var list_size = listSize(head);
if (list_size < 2) {
document.write( "Invalid Input" );
return ;
}
first = second = -2147483648;
var temp = head;
while (temp != null ) {
if (temp.data > first) {
second = first;
first = temp.data;
}
else if (temp.data > second && temp.data != first)
second = temp.data;
temp = temp.next;
}
if (second == -2147483648)
document.write( "There is no second" + " largest element<br>" );
else
document.write( "The second largest " + "element is " + second);
}
var start = null ;
start = push(start, 1);
start = push(start, 34);
start = push(start, 10);
start = push(start, 1);
start = push(start, 35);
start = push(start, 12);
print2largest(start);
</script>
|
OutputThe second largest element is 34