C Program For Writing A Function To Get Nth Node In A Linked List Last Updated : 22 Jun, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Write a GetNth() function that takes a linked list and an integer index and returns the data value stored in the node at that index position. Example: Input: 1->10->30->14, index = 2 Output: 30 The node at index 2 is 30Recommended: Please solve it on "PRACTICE" first, before moving on to the solution. Algorithm: 1. Initialize count = 0 2. Loop through the link list a. If count is equal to the passed index then return current node b. Increment count c. Change current to point to next of the current. Implementation: C // C program to find n'th // node in linked list #include <assert.h> #include <stdio.h> #include <stdlib.h> // Link list node struct Node { int data; struct Node* next; }; /* Given a reference (pointer to pointer) to the head of a list and an int, push a new node on the front of the list. */ void push(struct Node** head_ref, int new_data) { // Allocate node struct Node* new_node = (struct Node*)malloc(sizeof(struct Node)); // Put in the data new_node->data = new_data; // Link the old list // off the new node new_node->next = (*head_ref); // Move the head to point // to the new node (*head_ref) = new_node; } // Takes head pointer of // the linked list and index // as arguments and return // data at index int GetNth(struct Node* head, int index) { struct Node* current = head; // The index of the node we're // currently looking at int count = 0; while (current != NULL) { if (count == index) return (current->data); count++; current = current->next; } /* If we get to this line, the caller was asking for a non-existent element so we assert fail */ assert(0); } // Driver Code int main() { // Start with the empty list struct Node* head = NULL; // Use push() to construct list // 1->12->1->4->1 push(&head, 1); push(&head, 4); push(&head, 1); push(&head, 12); push(&head, 1); // Check the count function printf("Element at index 3 is %d", GetNth(head, 3)); getchar(); } Output: Element at index 3 is 4 Time Complexity: O(n) Space Complexity : O(1) since using constant space for nodes and variables. Please refer complete article on Write a function to get Nth node in a Linked List for more details! Comment More infoAdvertise with us Next Article Javascript Program For Writing A Function To Get Nth Node In A Linked List K kartik Follow Improve Article Tags : C Language GetNth Linked Lists Similar Reads Javascript Program For Writing A Function To Get Nth Node In A Linked List Write a GetNth() function that takes a linked list and an integer index and returns the data value stored in the node at that index position. Example: Input: 1 -> 10 -> 30 -> 14, index = 2Output: 30 Explanation: The node at index 2 is 30Recommended: Please solve it on "PRACTICE" first, befo 4 min read Write a function to get Nth node in a Linked List Given a LinkedList and an index (1-based). The task is to find the data value stored in the node at that kth position. If no such node exists whose index is k then return -1.Example: Input: 1->10->30->14, index = 2Output: 10Explanation: The node value at index 2 is 10 Input: 1->32->12 11 min read Program for Nth node from the end of a Linked List Given a Linked List of M nodes and a number N, find the value at the Nth node from the end of the Linked List. If there is no Nth node from the end, print -1.Examples:Input: 1 -> 2 -> 3 -> 4, N = 3Output: 2Explanation: Node 2 is the third node from the end of the linked list.Input: 35 -> 14 min read Menu driven program for all operations on singly linked list in C A Linked List is a linear data structure that consists of two parts: one is the data part and the other is the address part. In this article, all the common operations of a singly linked list are discussed in one menu-driven program.Operations to be PerformedcreateList(): To create the list with the 8 min read C Program for Reverse a linked list Given pointer to the head node of a linked list, the task is to reverse the linked list. We need to reverse the list by changing links between nodes. Examples: Input : Head of following linked list 1->2->3->4->NULL Output : Linked list should be changed to, 4->3->2->1->NULL I 4 min read C Program to Implement Singly Linked List A linked list is a linear data structure used to store elements of the same data type but not in contiguous memory locations. It is a collection of nodes where each node contains a data field and a next pointer indicating the address of the next node. So only the current node in the list knows where 9 min read Like