C Program For Making Middle Node Head In A Linked List Last Updated : 28 Feb, 2023 Comments Improve Suggest changes Like Article Like Report Given a singly linked list, find middle of the linked list and set middle node of the linked list at beginning of the linked list. Examples: Input: 1 2 3 4 5 Output: 3 1 2 4 5 Input: 1 2 3 4 5 6 Output: 4 1 2 3 5 6 The idea is to first find middle of a linked list using two pointers, first one moves one at a time and second one moves two at a time. When second pointer reaches end, first reaches middle. We also keep track of previous of first pointer so that we can remove middle node from its current position and can make it head. C // C program to make middle node as // head of linked list. #include <stdio.h> #include <stdlib.h> // Link list node struct Node { int data; struct Node* next; }; /* Function to get the middle and set at beginning of the linked list*/ void setMiddleHead(struct Node** head) { if (*head == NULL) return; // To traverse list nodes one by one struct Node* one_node = (*head); // To traverse list nodes by skipping // one. struct Node* two_node = (*head); // To keep track of previous of middle struct Node* prev = NULL; while (two_node != NULL && two_node->next != NULL) { // For previous node of middle node prev = one_node; // Move one node each time two_node = two_node->next->next; // Move two node each time one_node = one_node->next; } // Set middle node at head prev->next = prev->next->next; one_node->next = (*head); (*head) = one_node; } // To insert a node at the beginning // of linked list. void push(struct Node** head_ref, int new_data) { // Allocate node struct Node* new_node = (struct Node*)malloc(sizeof(struct Node)); 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 function to print a given linked list void printList(struct Node* ptr) { while (ptr != NULL) { printf("%d ", ptr->data); ptr = ptr->next; } printf(""); } // Driver code int main() { // Create a list of 5 nodes struct Node* head = NULL; int i; for (i = 5; i > 0; i--) push(&head, i); printf(" list before: "); printList(head); setMiddleHead(&head); printf(" list After: "); printList(head); return 0; } Output: list before: 1 2 3 4 5 list After : 3 1 2 4 5 Time Complexity: O(n) where n is the total number of nodes in the linked list. Auxiliary Space: O(1) since using constant space Please refer complete article on Make middle node head in a linked list for more details! Comment More infoAdvertise with us Next Article C Program For Making Middle Node Head In A Linked List kartik Follow Improve Article Tags : Misc Linked List C Programs DSA Tortoise-Hare-Approach +1 More Practice Tags : Linked ListMisc Similar Reads C Program For Inserting A Node In A Linked List We have introduced Linked Lists in the previous post. We also created a simple linked list with 3 nodes and discussed linked list traversal.All programs discussed in this post consider the following representations of the linked list. C // A linked list node struct Node { int data; struct Node *next 7 min read C Program For Finding The Middle Element Of A Given Linked List 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 given linked list 4 min read C Program To Delete N Nodes After M Nodes Of A Linked List Given a linked list and two integers M and N. Traverse the linked list such that you retain M nodes then delete next N nodes, continue the same till end of the linked list.Difficulty Level: Rookie Examples: Input: M = 2, N = 2 Linked List: 1->2->3->4->5->6->7->8 Output: Linked L 3 min read C Program For Deleting A Node In A Doubly Linked List Pre-requisite: Doubly Link List Set 1| Introduction and Insertion Write a function to delete a given node in a doubly-linked list. Original Doubly Linked List Recommended: Please solve it on "PRACTICE" first, before moving on to the solution. Approach: The deletion of a node in a doubly-linked list 4 min read C# Program For Deleting A Node In A Doubly Linked List Pre-requisite: Doubly Link List Set 1| Introduction and Insertion Write a function to delete a given node in a doubly-linked list. Original Doubly Linked List Recommended: Please solve it on "PRACTICE" first, before moving on to the solution. Approach: The deletion of a node in a doubly-linked list 4 min read Like