Description
To delete a node after given node singly linked list - Case 1: check if list is empty Show message that list is empty. Case 2: If list has only one element or trying to delete last node Show message that no node available after that node to delete. Case 3: To delete any other node Step 1: Traverse the list to reach the given node Step 2: Maintain other node containing the address of previous node Step 3: Assign the address present in next field of node to delete to the next field of previous node. Step 4: Free the memory occupied by node. Note: Here head contains the address of first node
C/C++
/* C Program To Delete a Node After given node In singly linked list */ //Save it as delete_node_after_given_node_singly_linked_list.c #include<stdio.h> #include<malloc.h> struct node *create(int); void display(struct node *); struct node *delete_node_after_given_node(struct node *); //Declaring node struct node{ int data; struct node *next; }; int main(){ int n; struct node *head; printf("Enter number of nodes : "); scanf("%d",&n); //Calling function to create node head=create(n); //Calling function to display list display(head); //Code to delete a node after a given node head=delete_node_after_given_node(head); printf("\nThe linked list after deletion of a node after given node - \n"); //Calling function to display list after deletion of a node after given node display(head); return 0; } struct node *create(int n){ int i; struct node *head=NULL; struct node *address,*newNode; for(i=0;i<n;i++){ //Creating a new node newNode=(struct node*)malloc(sizeof(struct node*)); //Assigning data to newly created node printf("Enter the value of %d node : ",i+1); scanf("%d",&newNode->data); newNode->next=NULL; /*If list is empty assign the address of newly created node to head*/ if(head==NULL){ head=newNode; }else{ /* If list already have few elements then loop through list and add newly created node after given node*/ address=head; while(address->next!=NULL){ address=address->next; } address->next=newNode; } } return head; } void display(struct node *head){ struct node *address; //If list is empty if(head==NULL){ printf("The linked list is empty"); }else{ /*If list has elements then loop through the loop and print elements one by one in sequential manner*/ address=head; while(address!=NULL){ printf("The node value = %d and their address = %u\n",address->data,address); address=address->next; } } } //Function to delete a node after given node struct node *delete_node_after_given_node(struct node *head){ int val; struct node *preAddress, *address; printf("\nEnter the value after which node to delete : "); scanf("%d",&val); //If list is empty, show message if(head==NULL){ printf("\nNo node available to delete!!"); } //If list has only one node else if(head->next==NULL){ printf("No any next node available to delete!!"); }else{ address=head; preAddress=address; //To delete a node after first node if(preAddress->data==val){ address=preAddress->next; preAddress->next=address->next; free(address); }else{ //Traversing the node to reach the node after which node to delete while(preAddress->data!=val){ preAddress=address; address=address->next; } //If user enter node to delete after last node if(preAddress->next==NULL){ printf("No any next node available to delete!!"); }else{ //To delete node in other condition preAddress->next=address->next; free(address); } } } return head; }
Input: Enter number of nodes : 4 Enter the value of 1 node : 2 Enter the value of 2 node : 5 Enter the value of 3 node : 3 Enter the value of 4 node : 7 The node value = 2 and their address = 5705056 The node value = 5 and their address = 5705088 The node value = 3 and their address = 5705104 The node value = 7 and their address = 5705120 Enter the value after which node to delete : 3 Output: The linked list after deletion of a node after given node - The node value = 2 and their address = 5705056 The node value = 5 and their address = 5705088 The node value = 3 and their address = 5705104
Java
/* Java Program To Delete a Node After given node In singly linked list */ //Save it as DeleteNodeAfterGivenNodeSinglyLinkedList.java import java.io.*; import java.util.Scanner; public class DeleteNodeAfterGivenNodeSinglyLinkedList { // Declaring node class Node { int data; Node next; public Node(int data) { this.data = data; // Assigning null value to the next field this.next = null; } } public Node head = null; // Function to add node public void addNode(int data) { // Creating a new node Node newNode = new Node(data); /* If list is empty assign the address of newly created node to head */ if (head == null) { head = newNode; } else { /* * If list already have few elements then loop through list and */ Node ptr = head; while (ptr.next != null) { ptr = ptr.next; } ptr.next = newNode; } } public void display() { Node ptr = head; // If list is empty if (ptr == null) { System.out.println("The list is empty"); return; } System.out.println("The nodes of lists are : "); /* * If list has elements then loop through the loop and print elements one by one * in sequential manner */ while (ptr != null) { System.out.print(ptr.data + " "); ptr = ptr.next; } } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); DeleteNodeAfterGivenNodeSinglyLinkedList list = new DeleteNodeAfterGivenNodeSinglyLinkedList(); System.out.println("Enter number of node you want to enter : "); int n = scanner.nextInt(); for (int i = 0; i < n; i++) { System.out.println("Enter value of " + (i + 1) + " node : "); int val = scanner.nextInt(); list.addNode(val); } // Calling function to display list list.display(); System.out.println("\nEnter the value after which node to delete : "); int val = scanner.nextInt(); list.delete_node_after_given_node(val); // Calling function to display list after deletion of a node after given node System.out.println("\nAfter deletion of a node after given node - "); list.display(); } //Method to delete a node after a given node private void delete_node_after_given_node(int val) { Node preAddress, address; //If list is empty, show message if(head==null){ System.out.println("No node available to delete!!"); } //If list has only one node else if(head.next==null){ System.out.println("No any next node available to delete!!"); }else{ address=head; preAddress=address; //To delete a node after first node if(preAddress.data==val){ address=preAddress.next; preAddress.next=address.next; }else{ //Traversing the node to reach the node after which node to delete while(preAddress.data!=val){ preAddress=address; address=address.next; } //If user enter node to delete after last node if(preAddress.next==null){ System.out.println("No any next node available to delete!!"); }else{ //To delete node in other condition preAddress.next=address.next; } } } } }
Input: Enter number of node you want to enter : 4 Enter value of 1 node : 2 Enter value of 2 node : 5 Enter value of 3 node : 3 Enter value of 4 node : 7 The nodes of lists are : 2 5 3 7 Enter the value after which node to delete : 3 Output: After deletion of a node after given node - The nodes of lists are : 2 5 3
Related Programs
1) Program To Create And Display Singly Linked List2) Program To Add A Node In Beginning Of Singly Linked List
3) Program To Add A Node In The End Of Singly Linked List
4) Program To Add A Node Before A Given Node Singly Linked List
5) Program To Add A Node After A Given Node Singly Linked List
6) Program To Delete Node From Beginning Singly Linked List
7) Program To Delete Node From End Singly Linked List
8) Program To Delete Given Node Singly Linked List
9) Program To Delete Node Before Given Node Singly Linked List
10) Program To Delete All Nodes Of Singly Linked List
11) Program To Sort Elements Of Singly Linked List
12) Program To Reverse Elements Singly Linked List
13) Program to Find Maximum And Minimum Value Node In Singly Linked List
14) Program to Search an Element In Singly Linked List
15) Program To Remove Duplicate Elements From Singly Linked List
16) Program To Create And Display Circular Singly Linked List
17) Program To Add A Node At The Beginning Of Circular Linked List