Auxiliary Given a singly linked list, find the middle of the linked list. For example, if the given linked list is 1->2->3->4->5 then the output should be 3. If there are even nodes, then there would be two middle nodes, we need to print the second middle element. For example, if the given linked list is 1->2->3->4->5->6 then the output should be 4.
Easy And Brute Force Way: The Approach: Here in this approach, we use O(n) extra space for vector to store the linked list values and we simply return middle value of vector.
C++
#include <iostream>
#include<bits/stdc++.h>
usingnamespacestd;
classNode{
public:
intdata;
Node *next;
};
classNodeOperation{
public:
// Function to add a new node
voidpushNode(classNode** head_ref,intdata_val){
// Allocate node
classNode *new_node = newNode();
// Put in the data
new_node->data = data_val;
// Link the old list of the new node
new_node->next = *head_ref;
// move the head to point to the new node
*head_ref = new_node;
}
};
intmain() {
classNode *head = NULL;
classNodeOperation *temp = newNodeOperation();
for(inti=5; i>0; i--){
temp->pushNode(&head, i);
}
vector<int>v;
while(head!=NULL){
v.push_back(head->data);
head=head->next;
}
cout<<"Middle Value Of Linked List is :";
cout<<v[v.size()/2]<<endl;
return0;
}
Python3
classNode:
def__init__(self, data=None, next=None):
self.data =data
self.next=next
classNodeOperation:
defpushNode(self, head_ref, data_val):
new_node =Node(data=data_val)
new_node.next=head_ref[0]
head_ref[0] =new_node
if__name__ =="__main__":
head =[None]
temp =NodeOperation()
fori inrange(5, 0, -1):
temp.pushNode(head, i)
v =[]
whilehead[0]:
v.append(head[0].data)
head[0] =head[0].next
print("Middle Value Of Linked List is :", v[len(v)//2])
Java
importjava.util.ArrayList;
classNode {
publicintdata;
publicNode next;
}
classNodeOperation {
// Function to add a new node
publicvoidpushNode(Node[] headRef, intdataVal) {
// Allocate node
Node newNode = newNode();
// Put in the data
newNode.data = dataVal;
// Link the old list of the new node
newNode.next = headRef[0];
// move the head to point to the new node
headRef[0] = newNode;
}
}
//Driver code
publicclassMain {
publicstaticvoidmain(String[] args) {
Node[] head = newNode[1];
NodeOperation temp = newNodeOperation();
for(inti = 5; i > 0; i--) {
temp.pushNode(head, i);
}
ArrayList<Integer> v = newArrayList<Integer>();
Node curr = head[0];
while(curr != null) {
v.add(curr.data);
curr = curr.next;
}
System.out.print("Middle Value Of Linked List is : ");
System.out.println(v.get(v.size() / 2));
}
}
Javascript
class Node {
constructor() {
this.data = null;
this.next = null;
}
}
class NodeOperation {
// Function to add a new node
pushNode(headRef, dataVal) {
// Allocate node
const newNode = newNode();
// Put in the data
newNode.data = dataVal;
// Link the old list of the new node
newNode.next = headRef[0];
// move the head to point to the new node
headRef[0] = newNode;
}
}
// Driver code
const head = [null];
const temp = newNodeOperation();
for(let i = 5; i > 0; i--) {
temp.pushNode(head, i);
}
const v = [];
let curr = head[0];
while(curr !== null) {
v.push(curr.data);
curr = curr.next;
}
varmiddle = Math.floor(v.length / 2);
console.log("Middle Value Of Linked List is : "+ v[middle]);
C#
usingSystem;
usingSystem.Collections.Generic;
classNode {
publicintdata;
publicNode next;
}
classNodeOperation {
// Function to add a new node
publicvoidpushNode(refNode head_ref, intdata_val)
{
// Allocate node
Node new_node = newNode();
// Put in the data
new_node.data = data_val;
// Link the old list of the new node
new_node.next = head_ref;
// move the head to point to the new node
head_ref = new_node;
}
}
publicclassGFG {
staticpublicvoidMain()
{
Node head = null;
NodeOperation temp = newNodeOperation();
for(inti = 5; i > 0; i--) {
temp.pushNode(refhead, i);
}
List<int> v = newList<int>();
while(head != null) {
v.Add(head.data);
head = head.next;
}
Console.Write("Middle Value Of Linked List is : ");
Console.Write(v[v.Count / 2]);
Console.WriteLine();
}
}
Output
Middle Value Of Linked List is :3
Complexity Analysis:
Time Complexity: O(n), for traversing. Auxiliary Space: O(n), for Vector.
Method 1: Traverse the whole linked list and count the no. of nodes. Now traverse the list again till count/2 and return the node at count/2. Below is the implementation of the above approach:
C++
// C++ program for the above approach
#include <iostream>
usingnamespacestd;
classNode {
public:
intdata;
Node* next;
};
classNodeOperation {
public:
// Function to add a new node
voidpushNode(classNode** head_ref, intdata_val)
{
// Allocate node
classNode* new_node = newNode();
// Put in the data
new_node->data = data_val;
// Link the old list of the new node
new_node->next = *head_ref;
// move the head to point to the new node
*head_ref = new_node;
}
// A utility function to print a given linked list
voidprintNode(classNode* head)
{
while(head != NULL) {
cout << head->data << "->";
head = head->next;
}
cout << "NULL"<< endl;
}
/* Utility Function to find length of linked list */
intgetLen(classNode* head)
{
intlen = 0;
classNode* temp = head;
while(temp) {
len++;
temp = temp->next;
}
returnlen;
}
voidprintMiddle(classNode* head)
{
if(head) {
// find length
intlen = getLen(head);
classNode* temp = head;
// traverse till we reached half of length
intmidIdx = len / 2;
while(midIdx--) {
temp = temp->next;
}
// temp will be storing middle element
cout << "The middle element is ["<< temp->data
<< "]"<< endl;
}
}
};
// Driver Code
intmain()
{
classNode* head = NULL;
classNodeOperation* temp = newNodeOperation();
for(inti = 5; i > 0; i--) {
temp->pushNode(&head, i);
temp->printNode(head);
temp->printMiddle(head);
}
return0;
}
// This code is contributed by Tapesh(tapeshdua420)
Java
// Java Program for the above approach
importjava.io.*;
classGFG {
Node head;
/*Creating a new Node*/
classNode {
intdata;
Node next;
publicNode(intdata)
{
this.data = data;
this.next = null;
}
}
/*Function to add a new Node*/
publicvoidpushNode(intdata)
{
Node new_node = newNode(data);
new_node.next = head;
head = new_node;
}
/*Displaying the elements in the list*/
publicvoidprintNode()
{
Node temp = head;
while(temp != null) {
System.out.print(temp.data + "->");
temp = temp.next;
}
System.out.print("Null"
+ "\n");
}
/*Finding the length of the list.*/
publicintgetLen()
{
intlength = 0;
Node temp = head;
while(temp != null) {
length++;
temp = temp.next;
}
returnlength;
}
/*Printing the middle element of the list.*/
publicvoidprintMiddle()
{
if(head != null) {
intlength = getLen();
Node temp = head;
intmiddleLength = length / 2;
while(middleLength != 0) {
temp = temp.next;
middleLength--;
}
System.out.print("The middle element is ["
+ temp.data + "]");
System.out.println();
}
}
publicstaticvoidmain(String[] args)
{
GFG list = newGFG();
for(inti = 5; i >= 1; i--) {
list.pushNode(i);
list.printNode();
list.printMiddle();
}
}
}
// This Code is contributed by lokesh (lokeshmvs21).
Python3
# Python program for the above approach
classNode:
def__init__(self, data):
self.data =data
self.next=None
classNodeOperation:
# Function to add a new node
defpushNode(self, head_ref, data_val):
# Allocate node and put in the data
new_node =Node(data_val)
# Link the old list of the new node
new_node.next=head_ref
# move the head to point to the new node
head_ref =new_node
returnhead_ref
# A utility function to print a given linked list
defprintNode(self, head):
while(head !=None):
print('%d->'%head.data, end="")
head =head.next
print("NULL")
''' Utility Function to find length of linked list '''
defgetLen(self, head):
temp =head
len=0
while(temp !=None):
len+=1
temp =temp.next
returnlen
defprintMiddle(self, head):
ifhead !=None:
# find length
len=self.getLen(head)
temp =head
# traverse till we reached half of length
midIdx =len//2
whilemidIdx !=0:
temp =temp.next
midIdx -=1
# temp will be storing middle element
print('The middle element is [ %d ]'%temp.data)
# Driver Code
head =None
temp =NodeOperation()
fori inrange(5, 0, -1):
head =temp.pushNode(head, i)
temp.printNode(head)
temp.printMiddle(head)
# This code is contributed by Tapesh(tapeshdua420)
Javascript
<script>
// JavaScript program to find
// middle of linked list
varhead; // head of the linked list.
/* Linked list node */
class Node {
constructor(val) {
this.data = val;
this.next = null;
}
}
/* Function to add a new node*/
functionpushNode(new_data) {
varnew_node = newNode(new_data);
new_node.next = head;
head = new_node;
}
/*
* This function prints contents of linked
list starting from the given node
*/
functionprintNode() {
vartnode = head;
while(tnode != null) {
document.write(tnode.data + "->");
tnode = tnode.next;
}
document.write("NULL<br/>");
}
/*Finding the length of the list.*/
functiongetLen(){
let length = 0;
vartemp = head;
while(temp!=null){
length+=1;
temp = temp.next;
}
returnlength;
}
/*Printing the middle element of the list.*/
functionprintMiddle(){
if(head!=null){
let length = getLen();
vartemp = head;
let middleLength = length/2;
while(parseInt(middleLength)!=0){
temp = temp.next;
middleLength--;
}
document.write("The middle element is ["+ temp.data + "]<br/><br/>");
}
}
for(let i = 5; i >= 1; --i) {
pushNode(i);
printNode();
printMiddle();
}
// This code is contributed by lokeshmvs21.
</script>
C#
// C# Program for the above approach
usingSystem;
publicclassGFG {
/*Creating a new Node*/
classNode {
publicintdata;
publicNode next;
publicNode(intdata)
{
this.data = data;
this.next = null;
}
}
Node head;
/*Function to add a new Node*/
publicvoidpushNode(intdata)
{
Node new_node = newNode(data);
new_node.next = head;
head = new_node;
}
/*Displaying the elements in the list*/
publicvoidprintNode()
{
Node temp = head;
while(temp != null) {
Console.Write(temp.data + "->");
temp = temp.next;
}
Console.Write("Null"
+ "\n");
}
/*Finding the length of the list.*/
publicintgetLen()
{
intlength = 0;
Node temp = head;
while(temp != null) {
length++;
temp = temp.next;
}
returnlength;
}
/*Printing the middle element of the list.*/
publicvoidprintMiddle()
{
if(head != null) {
intlength = getLen();
Node temp = head;
intmiddleLength = length / 2;
while(middleLength != 0) {
temp = temp.next;
middleLength--;
}
Console.Write("The middle element is ["
+ temp.data + "]");
Console.WriteLine();
}
}
staticpublicvoidMain()
{
// Code
GFG list = newGFG();
for(inti = 5; i >= 1; i--) {
list.pushNode(i);
list.printNode();
list.printMiddle();
}
}
}
// This Code is contributed by lokeshmvs21.
Output
5->NULL
The middle element is [5]
4->5->NULL
The middle element is [5]
3->4->5->NULL
The middle element is [4]
2->3->4->5->NULL
The middle element is [4]
1->2->3->4->5->NULL
The middle element is [3]
Time Complexity: O(n) where n is no of nodes in linked list Auxiliary Space: O(1)
Method 2: Traverse linked list using two-pointers. Move one pointer by one and the other pointers by two. When the fast pointer reaches the end, the slow pointer will reach the middle of the linked list.
Below image shows how printMiddle function works in the code :
C
// C program to find middle of linked list
#include<stdio.h>
#include<stdlib.h>
/* Link list node */
structNode
{
intdata;
structNode* next;
};
/* Function to get the middle of the linked list*/
voidprintMiddle(structNode *head)
{
structNode *slow_ptr = head;
structNode *fast_ptr = head;
if(head!=NULL)
{
while(fast_ptr != NULL && fast_ptr->next != NULL)
{
fast_ptr = fast_ptr->next->next;
slow_ptr = slow_ptr->next;
}
printf("The middle element is [ %d ]\n\n", slow_ptr->data);
}
}
voidpush(structNode** head_ref, intnew_data)
{
/* allocate node */
structNode* new_node =
(structNode*) malloc(sizeof(structNode));
/* put in the data */
new_node->data = new_data;
/* link the old list of the new node */
new_node->next = (*head_ref);
/* move the head to point to the new node */
(*head_ref) = new_node;
}
// A utility function to print a given linked list
voidprintList(structNode *ptr)
{
while(ptr != NULL)
{
printf("%d->", ptr->data);
ptr = ptr->next;
}
printf("NULL\n");
}
/* Driver program to test above function*/
intmain()
{
/* Start with the empty list */
structNode* head = NULL;
inti;
for(i=5; i>0; i--)
{
push(&head, i);
printList(head);
printMiddle(head);
}
return0;
}
C++
// C++ program for the above approach
#include <iostream>
usingnamespacestd;
classNode{
public:
intdata;
Node *next;
};
classNodeOperation{
public:
// Function to add a new node
voidpushNode(classNode** head_ref,intdata_val){
// Allocate node
classNode *new_node = newNode();
// Put in the data
new_node->data = data_val;
// Link the old list of the new node
new_node->next = *head_ref;
// move the head to point to the new node
*head_ref = new_node;
}
// A utility function to print a given linked list
voidprintNode(classNode *head){
while(head != NULL){
cout <<head->data << "->";
head = head->next;
}
cout << "NULL"<< endl;
}
voidprintMiddle(classNode *head){
structNode *slow_ptr = head;
structNode *fast_ptr = head;
if(head!=NULL)
{
while(fast_ptr != NULL && fast_ptr->next != NULL)
{
fast_ptr = fast_ptr->next->next;
slow_ptr = slow_ptr->next;
}
cout << "The middle element is ["<< slow_ptr->data << "]"<< endl;
}
}
};
// Driver Code
intmain(){
classNode *head = NULL;
classNodeOperation *temp = newNodeOperation();
for(inti=5; i>0; i--){
temp->pushNode(&head, i);
temp->printNode(head);
temp->printMiddle(head);
}
return0;
}
Java
// Java program to find middle of linked list
importjava.io.*;
classLinkedList {
Node head; // head of linked list
/* Linked list node */
classNode {
intdata;
Node next;
Node(intd)
{
data = d;
next = null;
}
}
/* Function to print middle of linked list */
voidprintMiddle()
{
Node slow_ptr = head;
Node fast_ptr = head;
while(fast_ptr != null&& fast_ptr.next != null) {
fast_ptr = fast_ptr.next.next;
slow_ptr = slow_ptr.next;
}
System.out.println("The middle element is ["
+ slow_ptr.data + "] \n");
}
/* Inserts a new Node at front of the list. */
publicvoidpush(intnew_data)
{
/* 1 & 2: Allocate the Node &
Put in the data*/
Node new_node = newNode(new_data);
/* 3. Make next of new Node as head */
new_node.next = head;
/* 4. Move the head to point to new Node */
head = new_node;
}
/* This function prints contents of linked list
starting from the given node */
publicvoidprintList()
{
Node tnode = head;
while(tnode != null) {
System.out.print(tnode.data + "->");
tnode = tnode.next;
}
System.out.println("NULL");
}
publicstaticvoidmain(String[] args)
{
LinkedList llist = newLinkedList();
for(inti = 5; i > 0; --i) {
llist.push(i);
llist.printList();
llist.printMiddle();
}
}
}
// This code is contributed by Rajat Mishra
Python3
# Python3 program to find middle of linked list
# Node class
classNode:
# Function to initialise the node object
def__init__(self, data):
self.data =data # Assign data
self.next=None# Initialize next as null
# Linked List class contains a Node object
classLinkedList:
# Function to initialize head
def__init__(self):
self.head =None
# Function to insert a new node at the beginning
defpush(self, new_data):
new_node =Node(new_data)
new_node.next=self.head
self.head =new_node
# Print the linked list
defprintList(self):
node =self.head
whilenode:
print(str(node.data) +"->", end="")
node =node.next
print("NULL")
# Function that returns middle.
defprintMiddle(self):
# Initialize two pointers, one will go one step a time (slow), another two at a time (fast)
slow =self.head
fast =self.head
# Iterate till fast's next is null (fast reaches end)
whilefast andfast.next:
slow =slow.next
fast =fast.next.next
# return the slow's data, which would be the middle element.
print("The middle element is ", slow.data)
# Code execution starts here
if__name__=='__main__':
# Start with the empty list
llist =LinkedList()
fori inrange(5, 0, -1):
llist.push(i)
llist.printList()
llist.printMiddle()
# Code is contributed by Kumar Shivam (kshivi99)
Javascript
<script>
// JavaScript program to find
// middle of linked list
varhead; // head of linked list
/* Linked list node */
class Node {
constructor(val) {
this.data = val;
this.next = null;
}
}
/* Function to print middle
of linked list */
functionprintMiddle()
{
varslow_ptr = head;
varfast_ptr = head;
if(head != null)
{
while(fast_ptr != null&&
fast_ptr.next != null)
{
fast_ptr = fast_ptr.next.next;
slow_ptr = slow_ptr.next;
}
document.write(
"The middle element is ["+ slow_ptr.data + "] <br/><br/>"
);
}
}
/* Inserts a new Node at front of the list. */
functionpush(new_data) {
/*
* 1 & 2: Allocate the Node & Put in the data
*/
varnew_node = newNode(new_data);
/* 3. Make next of new Node as head */
new_node.next = head;
/* 4. Move the head to point to new Node */
head = new_node;
}
/*
* This function prints contents of linked
list starting from the given node
*/
functionprintList() {
vartnode = head;
while(tnode != null) {
document.write(tnode.data + "->");
tnode = tnode.next;
}
document.write("NULL<br/>");
}
for(i = 5; i > 0; --i) {
push(i);
printList();
printMiddle();
}
// This code is contributed by todaysgaurav
</script>
C#
// C# program to find middle of linked list
usingSystem;
classLinkedList{
// Head of linked list
Node head;
// Linked list node
classNode
{
publicintdata;
publicNode next;
publicNode(intd)
{
data = d;
next = null;
}
}
// Function to print middle of linked list
voidprintMiddle()
{
Node slow_ptr = head;
Node fast_ptr = head;
if(head != null)
{
while(fast_ptr != null&&
fast_ptr.next != null)
{
fast_ptr = fast_ptr.next.next;
slow_ptr = slow_ptr.next;
}
Console.WriteLine("The middle element is ["+
slow_ptr.data + "] \n");
}
}
// Inserts a new Node at front of the list.
publicvoidpush(intnew_data)
{
/* 1 & 2: Allocate the Node &
Put in the data*/
Node new_node = newNode(new_data);
/* 3. Make next of new Node as head */
new_node.next = head;
/* 4. Move the head to point to new Node */
head = new_node;
}
// This function prints contents of linked
// list starting from the given node
publicvoidprintList()
{
Node tnode = head;
while(tnode != null)
{
Console.Write(tnode.data + "->");
tnode = tnode.next;
}
Console.WriteLine("NULL");
}
// Driver code
staticpublicvoidMain()
{
LinkedList llist = newLinkedList();
for(inti = 5; i > 0; --i)
{
llist.push(i);
llist.printList();
llist.printMiddle();
}
}
}
// This code is contributed by Dharanendra L V.
Output
5->NULL
The middle element is [5]
4->5->NULL
The middle element is [5]
3->4->5->NULL
The middle element is [4]
2->3->4->5->NULL
The middle element is [4]
1->2->3->4->5->NULL
The middle element is [3]
Time Complexity: O(N), As we are traversing the list only once. Auxiliary Space: O(1), As constant extra space is used.
Method 3: Initialize the mid element as head and initialize a counter as 0. Traverse the list from the head, while traversing increment the counter and change mid to mid->next whenever the counter is odd. So the mid will move only half of the total length of the list. Thanks to Narendra Kangralkar for suggesting this method.
C++
#include <bits/stdc++.h>
usingnamespacestd;
// Link list node
structnode
{
intdata;
structnode* next;
};
// Function to get the middle of
// the linked list
voidprintMiddle(structnode* head)
{
intcount = 0;
structnode* mid = head;
while(head != NULL)
{
// Update mid, when 'count'
// is odd number
if(count & 1)
mid = mid->next;
++count;
head = head->next;
}
// If empty list is provided
if(mid != NULL)
printf("The middle element is [%d]\n\n",
mid->data);
}
voidpush(structnode** head_ref, intnew_data)
{
// Allocate node
structnode* new_node = (structnode*)malloc(
sizeof(structnode));
// Put in the data
new_node->data = new_data;
// Link the old list of the new node
new_node->next = (*head_ref);
// Move the head to point to
// the new node
(*head_ref) = new_node;
}
// A utility function to print
// a given linked list
voidprintList(structnode* ptr)
{
while(ptr != NULL)
{
printf("%d->", ptr->data);
ptr = ptr->next;
}
printf("NULL\n");
}
// Driver code
intmain()
{
// Start with the empty list
structnode* head = NULL;
inti;
for(i = 5; i > 0; i--)
{
push(&head, i);
printList(head);
printMiddle(head);
}
return0;
}
// This code is contributed by ac121102
C
#include <stdio.h>
#include <stdlib.h>
/* Link list node */
structnode {
intdata;
structnode* next;
};
/* Function to get the middle of the linked list*/
voidprintMiddle(structnode* head)
{
intcount = 0;
structnode* mid = head;
while(head != NULL) {
/* update mid, when 'count' is odd number */
if(count & 1)
mid = mid->next;
++count;
head = head->next;
}
/* if empty list is provided */
if(mid != NULL)
printf("The middle element is [ %d ]\n\n", mid->data);
}
voidpush(structnode** head_ref, intnew_data)
{
/* allocate node */
structnode* new_node
= (structnode*)malloc(sizeof(structnode));
/* put in the data */
new_node->data = new_data;
/* link the old list of the new node */
new_node->next = (*head_ref);
/* move the head to point to the new node */
(*head_ref) = new_node;
}
// A utility function to print a given linked list
voidprintList(structnode* ptr)
{
while(ptr != NULL) {
printf("%d->", ptr->data);
ptr = ptr->next;
}
printf("NULL\n");
}
/* Driver program to test above function*/
intmain()
{
/* Start with the empty list */
structnode* head = NULL;
inti;
for(i = 5; i > 0; i--) {
push(&head, i);
printList(head);
printMiddle(head);
}
return0;
}
Java
importjava.io.*;
classGFG {
staticNode head;
// Link list node
classNode {
intdata;
Node next;
// Constructor
publicNode(Node next, intdata)
{
this.data = data;
this.next = next;
}
}
// Function to get the middle of
// the linked list
voidprintMiddle(Node head)
{
intcount = 0;
Node mid = head;
while(head != null) {
// Update mid, when 'count'
// is odd number
if((count % 2) == 1)
mid = mid.next;
++count;
head = head.next;
}
// If empty list is provided
if(mid != null)
System.out.println("The middle element is ["
+ mid.data + "]\n");
}
voidpush(Node head_ref, intnew_data)
{
// Allocate node
Node new_node = newNode(head_ref, new_data);
// Move the head to point to the new node
head = new_node;
}
// A utility function to print a
// given linked list
voidprintList(Node head)
{
while(head != null) {
System.out.print(head.data + "-> ");
head = head.next;
}
System.out.println("null");
}
// Driver code
publicstaticvoidmain(String[] args)
{
GFG ll = newGFG();
for(inti = 5; i > 0; i--) {
ll.push(head, i);
ll.printList(head);
ll.printMiddle(head);
}
}
}
// This code is contributed by mark_3
Python3
# Node class
classNode:
# Function to initialise the node object
def__init__(self, data):
self.data =data # Assign data
self.next=None# Initialize next as null
# Linked List class contains a Node object
classLinkedList:
# Function to initialize head
def__init__(self):
self.head =None
# Function to insert a new node at the beginning
defpush(self, new_data):
new_node =Node(new_data)
new_node.next=self.head
self.head =new_node
# Print the linked list
defprintList(self):
node =self.head
whilenode:
print(str(node.data) +"->", end ="")
node =node.next
print("NULL")
# Function to get the middle of
# the linked list
defprintMiddle(self):
count =0
mid =self.head
heads =self.head
while(heads !=None):
# Update mid, when 'count'
# is odd number
ifcount&1:
mid =mid.next
count +=1
heads =heads.next
# If empty list is provided
ifmid!=None:
print("The middle element is ", mid.data)
# Code execution starts here
if__name__=='__main__':
# Start with the empty list
llist =LinkedList()
fori inrange(5, 0, -1):
llist.push(i)
llist.printList()
llist.printMiddle()
# This Code is contributed by Manisha_Ediga
C#
usingSystem;
publicclassGFG
{
staticNode head;
// Link list node
public
classNode {
public
intdata;
public
Node next;
// Constructor
publicNode(Node next, intdata) {
this.data = data;
this.next = next;
}
}
// Function to get the middle of
// the linked list
voidprintMiddle(Node head) {
intcount = 0;
Node mid = head;
while(head != null) {
// Update mid, when 'count'
// is odd number
if((count % 2) == 1)
mid = mid.next;
++count;
head = head.next;
}
// If empty list is provided
if(mid != null)
Console.WriteLine("The middle element is ["+ mid.data + "]\n");
}
publicvoidPush(Node head_ref, intnew_data) {
// Allocate node
Node new_node = newNode(head_ref, new_data);
// Move the head to point to the new node
head = new_node;
}
// A utility function to print a
// given linked list
voidprintList(Node head) {
while(head != null) {
Console.Write(head.data + "-> ");
head = head.next;
}
Console.WriteLine("null");
}
// Driver code
publicstaticvoidMain(String[] args) {
GFG ll = newGFG();
for(inti = 5; i > 0; i--) {
ll.Push(head, i);
ll.printList(head);
ll.printMiddle(head);
}
}
}
// This code is contributed by Rajput-Ji
Javascript
<script>
varhead=null;
// Link list node
class Node {
constructor(next,val) {
this.data = val;
this.next = next;
}
}
// Function to get the middle of
// the linked list
functionprintMiddle(head) {
varcount = 0;
varmid = head;
while(head != null) {
// Update mid, when 'count'
// is odd number
if((count % 2) == 1)
mid = mid.next;
++count;
head = head.next;
}
// If empty list is provided
if(mid != null)
document.write("The middle element is ["+ mid.data + "]<br/><br/>");
}
functionpush(head_ref , new_data) {
// Allocate node
varnew_node = newNode(head_ref, new_data);
// Move the head to point to the new node
head = new_node;
returnhead;
}
// A utility function to print a
// given linked list
functionprintList(head) {
while(head != null) {
document.write(head.data + "-> ");
head = head.next;
}
document.write("null<br/>");
}
// Driver code
for(i = 5; i > 0; i--) {
head= push(head, i);
printList(head);
printMiddle(head);
}
// This code contributed by gauravrajput1
</script>
Output
5->NULL
The middle element is [5]
4->5->NULL
The middle element is [5]
3->4->5->NULL
The middle element is [4]
2->3->4->5->NULL
The middle element is [4]
1->2->3->4->5->NULL
The middle element is [3]
Time Complexity: O(N), As we are traversing the list once. Auxiliary Space: O(1), As constant extra space is used.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy
Improvement
This article is being improved by another user right now. You can suggest the changes for now and it will be under the article’s discussion tab.
You will be notified via email once the article is available for improvement.
Thank you for your valuable feedback!
Please Login to comment...