Find max value in linked list using recursion python

Find smallest and largest elements in singly linked list

Given a singly linked list of n nodes and find the smallest and largest elements in linked list.
Examples:

Input : 15 14 13 22 17 Output : Linked list are: 17 -> 22 -> 13 -> 14 -> 15 -> NULL Maximum element in linked list: 22 Minimum element in linked list: 13 Input : 20 25 23 68 54 13 45 Output : Linked list are: 45 -> 13 -> 54 -> 68 -> 23 -> 25 -> 20 -> NULL Maximum element in linked list: 68 Minimum element in linked list: 13

Recommended: Please try your approach on {IDE} first, before moving on to the solution.

The idea is to traverse the linked list while head not equal to NULL and initialise the max and min variable to INT_MIN and INT_MAX respectively. After that check a condition that if max value is less then head value is assigned to max or min value is greater then head value is assigned to min otherwise head point to next node. Continue this process until head not equal to NULL.

C++




// C++ Program to find smallest and largest

// elements in singly linked list.

#include

using namespace std;

/* Linked list node */

struct Node {

int data;

struct Node* next;

};

// Function that returns the largest element

// from the linked list.

int largestElement[struct Node* head]

{

// Declare a max variable and initialize

// it with INT_MIN value.

// INT_MIN is integer type and its value

// is -32767 or less.

int max = INT_MIN;

// Check loop while head not equal to NULL

while [head != NULL] {

// If max is less then head->data then

// assign value of head->data to max

// otherwise node point to next node.

if [max < head->data]

max = head->data;

head = head->next;

}

return max;

}

// Function that returns smallest element

// from the linked list.

int smallestElement[struct Node* head]

{

// Declare a min variable and initialize

// it with INT_MAX value.

// INT_MAX is integer type and its value

// is 32767 or greater.

int min = INT_MAX;

// Check loop while head not equal to NULL

while [head != NULL] {

// If min is greater then head->data then

// assign value of head->data to min

// otherwise node point to next node.

if [min > head->data]

min = head->data;

head = head->next;

}

return min;

}

// Function that push the element in linked list.

void push[struct Node** head, int data]

{

// Allocate dynamic memory for newNode.

struct Node* newNode =

[struct Node*]malloc[sizeof[struct Node]];

// Assign the data into newNode.

newNode->data = data;

// newNode->next assign the address of

// head node.

newNode->next = [*head];

// newNode become the headNode.

[*head] = newNode;

}

// Display linked list.

void printList[struct Node* head]

{

while [head != NULL] {

printf["%d -> ", head->data];

head = head->next;

}

cout 13->14->15

push[&head, 15];

push[&head, 14];

push[&head, 13];

push[&head, 22];

push[&head, 17];

cout 22->13->14->15

push[ 15];

push[ 14];

push[ 13];

push[ 22];

push[ 17];

System.out.println["Linked list is : "] ;

// Call printList[] function to

// display the linked list.

printList[head];

System.out.print["Maximum element in linked list: "];

// Call largestElement[] function to get

// largest element in linked list.

System.out.println[largestElement[head]];

System.out.print["Minimum element in linked list: "];

// Call smallestElement[] function to get

// smallest element in linked list.

System.out.print[smallestElement[head]];

}

}

// This code is contributed by Prerna saini.

Python




# Python3 program to find smallest and largest

# elements in singly linked list.

# Linked list node

class Node:

def __init__[self]:

self.data = None

self.next = None

head = None

# Function that returns the largest element

# from the linked list.

def largestElement[head]:

# Declare a max variable and initialize

# it with INT_MIN value.

# INT_MIN is integer type and its value

# is -32767 or less.

max = -32767

# Check loop while head not equal to None

while [head != None]:

# If max is less then head.data then

# assign value of head.data to max

# otherwise node point to next node.

if [max < head.data] :

max = head.data

head = head.next

return max

# Function that returns smallest element

# from the linked list.

def smallestElement[head]:

# Declare a min variable and initialize

# it with INT_MAX value.

# INT_MAX is integer type and its value

# is 32767 or greater.

min = 32767

# Check loop while head not equal to None

while [head != None] :

# If min is greater then head.data then

# assign value of head.data to min

# otherwise node point to next node.

if [min > head.data] :

min = head.data

head = head.next

return min

# Function that push the element in linked list.

def push[ data] :

global head

# Allocate dynamic memory for newNode.

newNode = Node[]

# Assign the data into newNode.

newNode.data = data

# newNode.next assign the address of

# head node.

newNode.next = [head]

# newNode become the headNode.

[head] = newNode

# Display linked list.

def printList[ head] :

while [head != None] :

print[head.data ,end= " -> "]

head = head.next

print["None"]

# Driver code

# Start with empty list

# head = new Node[]

# Using push[] function to construct

# singly linked list

# 17.22.13.14.15

push[ 15]

push[ 14]

push[ 13]

push[ 22]

push[ 17]

print["Linked list is : "]

# Call printList[] function to

# display the linked list.

printList[head]

print["Maximum element in linked list: ",end=""]

# Call largestElement[] function to get

# largest element in linked list.

print[largestElement[head]]

print["Minimum element in linked list: ",end=""]

# Call smallestElement[] function to get

# smallest element in linked list.

print[smallestElement[head],end=""]

# This code is contributed by Arnab Kundu

C#




// C# program to find smallest and largest

// elements in singly linked list.

using System;

class GfG

{

/* Linked list node */

class Node

{

public int data;

public Node next;

}

static Node head = null;

// Function that returns the largest element

// from the linked list.

static int largestElement[Node head]

{

// Declare a max variable and initialize

// it with INT_MIN value.

// INT_MIN is integer type and its value

// is -32767 or less.

int max = int.MinValue;

// Check loop while head not equal to NULL

while [head != null]

{

// If max is less then head->data then

// assign value of head->data to max

// otherwise node point to next node.

if [max < head.data]

max = head.data;

head = head.next;

}

return max;

}

// Function that returns smallest element

// from the linked list.

static int smallestElement[Node head]

{

// Declare a min variable and initialize

// it with INT_MAX value.

// INT_MAX is integer type and its value

// is 32767 or greater.

int min = int.MaxValue;

// Check loop while head not equal to NULL

while [head != null]

{

// If min is greater then head->data then

// assign value of head->data to min

// otherwise node point to next node.

if [min > head.data]

min = head.data;

head = head.next;

}

return min;

}

// Function that push the element in linked list.

static void push[int data]

{

// Allocate dynamic memory for newNode.

Node newNode = new Node[];

// Assign the data into newNode.

newNode.data = data;

// newNode->next assign the address of

// head node.

newNode.next = [head];

// newNode become the headNode.

[head] = newNode;

}

// Display linked list.

static void printList[Node head]

{

while [head != null]

{

Console.Write[head.data + " -> "];

head = head.next;

}

Console.WriteLine["NULL"];

}

// Driver code

public static void Main[]

{

// Start with empty list

// head = new Node[];

// Using push[] function to construct

// singly linked list

// 17->22->13->14->15

push[ 15];

push[ 14];

push[ 13];

push[ 22];

push[ 17];

Console.WriteLine["Linked list is : "] ;

// Call printList[] function to

// display the linked list.

printList[head];

Console.Write["Maximum element in linked list: "];

// Call largestElement[] function to get

// largest element in linked list.

Console.WriteLine[largestElement[head]];

Console.Write["Minimum element in linked list: "];

// Call smallestElement[] function to get

// smallest element in linked list.

Console.Write[smallestElement[head]];

}

}

// This code is contributed by PrinciRaj1992

Javascript




// JavaScript program to find smallest and largest

// elements in singly linked list.

/* Linked list node */

class Node {

constructor[val] {

this.data = val;

this.next = null;

}

}

var head = null;

// Function that returns the largest element

// from the linked list.

function largestElement[head] {

// Declare a max variable and initialize

// it with INT_MIN value.

// INT_MIN is integer type and its value

// is -32767 or less.

var max = Number.MIN_VALUE;

// Check loop while head not equal to NULL

while [head != null] {

// If max is less then head->data then

// assign value of head->data to max

// otherwise node point to next node.

if [max < head.data]

max = head.data;

head = head.next;

}

return max;

}

// Function that returns smallest element

// from the linked list.

function smallestElement[head] {

// Declare a min variable and initialize

// it with INT_MAX value.

// INT_MAX is integer type and its value

// is 32767 or greater.

var min = Number.MAX_VALUE;

// Check loop while head not equal to NULL

while [head != null] {

// If min is greater then head->data then

// assign value of head->data to min

// otherwise node point to next node.

if [min > head.data]

min = head.data;

head = head.next;

}

return min;

}

// Function that push the element in linked list.

function push[data] {

// Allocate dynamic memory for newNode.

var newNode = new Node[];

// Assign the data into newNode.

newNode.data = data;

// newNode->next assign the address of

// head node.

newNode.next = [head];

// newNode become the headNode.

[head] = newNode;

}

// Display linked list.

function printList[head] {

while [head != null] {

document.write[head.data + " -> "];

head = head.next;

}

document.write["NULL"];

}

// Driver code

// Start with empty list

// head = new Node[];

// Using push[] function to construct

// singly linked list

// 17->22->13->14->15

push[15];

push[14];

push[13];

push[22];

push[17];

document.write["Linked list is :
"];

// Call printList[] function to

// display the linked list.

printList[head];

document.write["
Maximum element in linked list: "];

// Call largestElement[] function to get

// largest element in linked list.

document.write[largestElement[head]];

document.write["
Minimum element in linked list: "];

// Call smallestElement[] function to get

// smallest element in linked list.

document.write[smallestElement[head]];

// This code contributed by Rajput-Ji

Output:

Linked list is : 17 -> 22 -> 13 -> 14 -> 15 -> NULL Maximum element in linked list: 22 Minimum element in linked list: 13

This article is contributed by Dharmendra kumar. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to . See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.




Article Tags :

Linked List

Practice Tags :

Linked List

Read Full Article

Program to find the maximum and minimum value node from a singly linked list

Explanation

In this program, we need to find out the minimum and maximum value node in the given singly linked list.

We will maintain two variables min and max. Min will hold minimum value node, and max will hold maximum value node. In the above example, 1 will be minimum value node and 8 will be maximum value node. The algorithm to find the maximum and minimum node is given below.

Algorithm

  1. Create a class Node which has two attributes: data and next. Next is a pointer to the next node in the list.
  2. Create another class MinMax which has two attributes: head and tail.
  3. addNode[] will add a new node to the list:
    1. Create a new node.
    2. It first checks, whether the head is equal to null which means the list is empty.
    3. If the list is empty, both head and tail will point to a newly added node.
    4. If the list is not empty, the new node will be added to end of the list such that tail's next will point to a newly added node. This new node will become the new tail of the list.
  4. minNode[] will display minimum value node:
    1. Define a variable min and initialize it with head's data.
    2. Node current will point to head.
    3. Iterate through the list by comparing each node's data with min.
    4. If min is greater than current's data then, min will hold current's data.
    5. At the end of the list, variable min will hold minimum value node.
    6. Display the min value.
  5. maxNode[] will display maximum value node:
    1. Define a variable max and initialize it with head's data.
    2. Node current will point to head.
    3. Iterate through the list by comparing each node's data with max.
    4. If max is less than current's data then, max will hold current's data.
    5. At the end of the list, variable max will hold maximum value node.
    6. Display the max value.

Solution

Python

Output:

Minimum value node in the list: 1 Maximum value node in the list: 8

C

Output:

Minimum value node in the list: 1 Maximum value node in the list: 8

JAVA

Output:

Minimum value node in the list: 1 Maximum value node in the list: 8

C#

Output:

Minimum value node in the list: 1 Maximum value node in the list: 8

PHP

Output:

Minimum value node in the list: 1 Maximum value node in the list: 8

7. Python program to find the maximum and minimum value node from a circular linked list

In this program, we will create a circular linked list then, iterate through the list to find out the minimum and maximum node.

We will maintain two variables min and max. Min will hold the minimum value node, and max will hold the maximum value node. In the above example, 2 will be the minimum value node and 9 will be the maximum value node.

ALGORITHM:

  1. Define a Node class which represents a node in the list. It has two properties data and next which will point to the next node.
  2. Define another class for creating the circular linked list, and it has two nodes: head and tail.
  3. minNode[] will print out minimum value node:
  • Define variable min and initialize with head's data.
  • Current will point to head.
  • Iterate through the list by comparing each node's data with min.
  • If min > current's data then min will hold current's data.
  • At the end of the list, variable min will hold the minimum value node.
  • Print the min value.

a. maxNode[] will prints out maximum value node:

  • Define variable max and initialize with head's data.
  • Current will point to head.
  • Iterate through the list by comparing each node's data with max.
  • If max > current's data, then max will hold current's data.
  • At the end of the list, variable max will hold the maximum value node.
  • Print the max value.

PROGRAM:

Output:

Minimum value node in the list: 1 Maximum value node in the list: 20

How do you find the maximum value of a linked list?

Algorithm

  1. Define a variable max and initialize it with head’s data.
  2. Node current will point to head.
  3. Iterate through the list by comparing each node’s data with max.
  4. If max is less than current’s data then, max will hold current’s data.
  5. At the end of the list, variable max will hold maximum value node.

How do you find the maximum in an array using recursion?

Approach:

  1. Get the array for which the maximum is to be found.
  2. Recursively find the maximum according to the following: Recursively traverse the array from the end. Base case: If the remaining array is of length 1, return the only present element i.e. arr[0]

How do you find the maximum value in a linked list in Python?

Iterate through the list by comparing each node’s data with max. If max > current’s data, then max will hold current’s data. At the end of the list, variable max will hold the maximum value node. Print the max value.

How do you find the recursive minimum?

  1. Consider first element of the array is minimum.
  2. Call the function by passing base address of the array and number of elements.
  3. Check for any other number is less then the minimum value, if yes assign that value to minimum.
  4. For every iteration increment the array address and decrement the no of elements!

Video liên quan

Bài mới nhất

Chủ Đề