Home » Program to Delete a New Node From the Beginning of the Circular Linked List

Program to Delete a New Node From the Beginning of the Circular Linked List

by Online Tutorials Library

Q. Program to delete a new node from the beginning of the circular linked list.

Explanation

In this program, we will create a circular linked list and delete a node from the beginning of the list. If the list is empty, print the message “List is empty”. If the list is not empty, we will make the head to point to next node in the list, i.e., we will delete the first node.

Program to delete a new node from the beginning of the circular linked list

Circular linked list after deleting node from beginning

Program to delete a new node from the beginning of the circular linked list

Here, A represents the head of the list. We need to delete a node from the beginning of the list. So, we will remove A such that B will become new head and tail will point to the new head.

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. It has two methods: deleteStart() and display() .
  3. deleteStart() will delete the node from the beginning of the list:
    1. It first checks whether the head is null (empty list) then, it will return from the function as there is no node present in the list.
    2. If the list is not empty, it will check whether list has only one node.
    3. If the list has only one node, it will set both head and tail to null.
    4. If the list has more than one node then, the head will point to the next node in the list that is, we will remove the previous head node and tail will point to the new head.
  4. display() will show all the nodes present in the list.
    1. Define a new node ‘current’ that will point to the head.
    2. Print current.data till current will points to head again.
    3. Current will point to the next node in the list in each iteration.

Solution

Python

Output:

Original List:    1 2 3 4  Updated List:    2 3 4  Updated List:    3 4  Updated List:    4  Updated List:   List is empty  

C

Output:

Original List:    1 2 3 4  Updated List:    2 3 4  Updated List:    3 4  Updated List:    4  Updated List:   List is empty  

JAVA

Output:

Original List:    1 2 3 4  Updated List:    2 3 4  Updated List:    3 4  Updated List:    4  Updated List:   List is empty  

C#

Output:

Original List:    1 2 3 4  Updated List:    2 3 4  Updated List:    3 4  Updated List:    4  Updated List:   List is empty  

PHP

Output:

Original List:    1 2 3 4  Updated List:    2 3 4  Updated List:    3 4  Updated List:    4  Updated List:   List is empty  

Next Topic#

You may also like