Javatpoint Logo
Javatpoint Logo

Java program to delete a new node from the beginning of the doubly linked list

In this program, we will create a doubly 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 then; we will delete the first node.

Java program to delete a new node from the beginning of the doubly linked list

Consider the above example, new was the head of the list. Make head to point to next node in the list. Now, node 1 will become the new head of the list thus, deleting node new.

Algorithm

  • Define a Node class which represents a node in the list. It will have three properties: data, previous which will point to the previous node and next which will point to the next node.
  • Define another class for creating a doubly linked list, and it has two nodes: head and tail. Initially, head and tail will point to null.
  • deleteFromStart() will delete a node from the beginning of the list:
    • 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.
    • If the list is not empty, it will check whether the list has only one node.
    • If the list has only one node, it will set both head and tail to null.
    • If the list has more than one node then, the head will point to next node in the list and delete the old head node.

a. display() will show all the nodes present in the list.

  • Define a new node 'current' that will point to the head.
  • Print current.data till current points to null.
  • Current will point to the next node in the list in each iteration.

Program:

Output:

Original List: 
1 2 3 4 5 
Updated List: 
2 3 4 5 
Updated List: 
3 4 5 
Updated List: 
4 5 
Updated List: 
5 
Updated List: 
List is empty
Next TopicJava Programs





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA