FIFA-2022 Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
701 views
in Tutorial & Interview questions by Goeduhub's Expert (9.3k points)

Inserting a node at the nth position

1 Answer

0 like 0 dislike
by Goeduhub's Expert (9.3k points)
 
Best answer
So far, we have looked at inserting a node at the beginning of a singly linked list. However, most of the times you will want to be able to insert nodes elsewhere as well. The code written below shows how it is possible to write an insert() function to insert nodes anywhere in the linked lists.

#include <stdio.h>

#include <stdlib.h>

struct Node

{  

int data;  

struct Node* next;

};

struct Node* insert(struct Node* head, int value, size_t position);

void print_list (struct Node* head);

int main(int argc, char *argv[])

{  

struct Node *head = NULL; /* Initialize the list to be empty */

  /* Insert nodes at positions with values: */  

head = insert(head, 1, 0);  

head = insert(head, 100, 1);  

head = insert(head, 21, 2);  

head = insert(head, 2, 3);  

head = insert(head, 5, 4);  

head = insert(head, 42, 2);

print_list(head);  return 0;

}

struct Node* insert(struct Node* head, int value, size_t position) {  size_t i = 0;  struct Node *currentNode;

  /* Create our node */  

currentNode = malloc(sizeof *currentNode);  /* Check for success of malloc() here! */

  /* Assign data */  

currentNode->data = value;

  /* Holds a pointer to the 'next' field that we have to link to the new node.     By initializing it to &head we handle the case of insertion at the beginning. */  

struct Node **nextForPosition = &head;  /* Iterate to get the 'next' field we are looking for.     Note: Insert at the end if position is larger than current number of elements. */  

for (i = 0; i < position && *nextForPosition != NULL; i++)

{      /* nextForPosition is pointing to the 'next' field of the node. So *nextForPosition is a pointer to the next node. Update it with a pointer to the 'next' field of the next node. */      nextForPosition = &(*nextForPosition)->next;  

}

  /* Here, we are taking the link to the next node (the one our newly inserted node should  point to) by dereferencing nextForPosition, which points to the 'next' field of the node  that is in the position we want to insert our node at.  We assign this link to our next value. */  currentNode->next = *nextForPosition;

  /* Now, we want to correct the link of the node before the position of our  new node: it will be changed to be a pointer to our new node. */  

*nextForPosition = currentNode;

return head;

}

void print_list (struct Node* head)

{  /* Go through the list of nodes and print out the data in each node */  

struct Node* i = head;  while (i != NULL)

{    

printf("%d\n", i->data);    

i = i->next;  

}

}

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...