Given a Linked List and a number n, write a function that returns the value at the n’th node from end of the Linked List.

Method 1 (Use length of linked list)
1) Calculate the length of Linked List. Let the length be len.
2) Print the (len – n + 1)th node from the begining of the Linked List.

Java Programming:

[pastacode lang=”java” manual=”%2F%2F%20Simple%20Java%20program%20to%20find%20n’th%20node%20from%20end%20of%20linked%20list%0Aclass%20LinkedList%0A%7B%0A%20%20%20%20Node%20head%3B%20%2F%2F%20head%20of%20the%20list%0A%20%0A%20%20%20%20%2F*%20Linked%20List%20node%20*%2F%0A%20%20%20%20class%20Node%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20int%20data%3B%0A%20%20%20%20%20%20%20%20Node%20next%3B%0A%20%20%20%20%20%20%20%20Node(int%20d)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%20%3D%20d%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20next%20%3D%20null%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*%20Function%20to%20get%20the%20nth%20node%20from%20the%20last%20of%20a%0A%20%20%20%20%20%20%20linked%20list%20*%2F%0A%20%20%20%20void%20printNthFromLast(int%20n)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20int%20len%20%3D%200%3B%0A%20%20%20%20%20%20%20%20Node%20temp%20%3D%20head%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F%2F%201)%20count%20the%20number%20of%20nodes%20in%20Linked%20List%0A%20%20%20%20%20%20%20%20while%20(temp%20!%3D%20null)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20temp%20%3D%20temp.next%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20len%2B%2B%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%0A%20%20%20%20%20%20%20%20%2F%2F%20check%20if%20value%20of%20n%20is%20not%20more%20than%20length%20of%0A%20%20%20%20%20%20%20%20%2F%2F%20the%20linked%20list%0A%20%20%20%20%20%20%20%20if%20(len%20%3C%20n)%0A%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%0A%20%20%20%20%20%20%20%20temp%20%3D%20head%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F%2F%202)%20get%20the%20(n-len%2B1)th%20node%20from%20the%20begining%0A%20%20%20%20%20%20%20%20for%20(int%20i%20%3D%201%3B%20i%20%3C%20len-n%2B1%3B%20i%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20temp%20%3D%20temp.next%3B%0A%20%0A%20%20%20%20%20%20%20%20System.out.println(temp.data)%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*%20Inserts%20a%20new%20Node%20at%20front%20of%20the%20list.%20*%2F%0A%20%20%20%20public%20void%20push(int%20new_data)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%2F*%201%20%26%202%3A%20Allocate%20the%20Node%20%26%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Put%20in%20the%20data*%2F%0A%20%20%20%20%20%20%20%20Node%20new_node%20%3D%20new%20Node(new_data)%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F*%203.%20Make%20next%20of%20new%20Node%20as%20head%20*%2F%0A%20%20%20%20%20%20%20%20new_node.next%20%3D%20head%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F*%204.%20Move%20the%20head%20to%20point%20to%20new%20Node%20*%2F%0A%20%20%20%20%20%20%20%20head%20%3D%20new_node%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*Drier%20program%20to%20test%20above%20methods%20*%2F%0A%20%20%20%20public%20static%20void%20main(String%20%5B%5D%20args)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20LinkedList%20llist%20%3D%20new%20LinkedList()%3B%0A%20%20%20%20%20%20%20%20llist.push(20)%3B%0A%20%20%20%20%20%20%20%20llist.push(4)%3B%0A%20%20%20%20%20%20%20%20llist.push(15)%3B%0A%20%20%20%20%20%20%20%20llist.push(35)%3B%0A%20%0A%20%20%20%20%20%20%20%20llist.printNthFromLast(4)%3B%0A%20%20%20%20%7D%0A%7D%2F%2F%20This%20code%20is%20contributed%20by%20Rajat%20Mishra” message=”” highlight=”” provider=”manual”/]

Output:

35
[ad type=”banner”]

Following is a recursive C code for the same method. Thanks to Anuj Bansal for providing following code.

C Programming:

[pastacode lang=”c” manual=”void%20printNthFromLast(struct%20node*%20head%2C%20int%20n)%20%0A%7B%0A%20%20%20%20static%20int%20i%20%3D%200%3B%0A%20%20%20%20if%20(head%20%3D%3D%20NULL)%0A%20%20%20%20%20%20%20return%3B%0A%20%20%20%20printNthFromLast(head-%3Enext%2C%20n)%3B%0A%20%20%20%20if%20(%2B%2Bi%20%3D%3D%20n)%0A%20%20%20%20%20%20%20printf(%22%25d%22%2C%20head-%3Edata)%3B%0A%7D” message=”” highlight=”” provider=”manual”/]

Time Complexity: O(n) where n is the length of linked list.
Method 2 (Use two pointers)
Maintain two pointers – reference pointer and main pointer. Initialize both reference and main pointers to head. First move reference pointer to n nodes from head. Now move both pointers one by one until reference pointer reaches end. Now main pointer will point to nth node from the end. Return main pointer.

Java Programming:

[pastacode lang=”java” manual=”%2F%2F%20Java%20program%20to%20find%20n’th%20node%20from%20end%20using%20slow%20and%0A%2F%2F%20fast%20pointers%0Aclass%20LinkedList%0A%7B%0A%20%20%20%20Node%20head%3B%20%2F%2F%20head%20of%20the%20list%0A%20%0A%20%20%20%20%2F*%20Linked%20List%20node%20*%2F%0A%20%20%20%20class%20Node%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20int%20data%3B%0A%20%20%20%20%20%20%20%20Node%20next%3B%0A%20%20%20%20%20%20%20%20Node(int%20d)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20data%20%3D%20d%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20next%20%3D%20null%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*%20Function%20to%20get%20the%20nth%20node%20from%20end%20of%20list%20*%2F%0A%20%20%20%20void%20printNthFromLast(int%20n)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20Node%20main_ptr%20%3D%20head%3B%0A%20%20%20%20%20%20%20%20Node%20ref_ptr%20%3D%20head%3B%0A%20%0A%20%20%20%20%20%20%20%20int%20count%20%3D%200%3B%0A%20%20%20%20%20%20%20%20if%20(head%20!%3D%20null)%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20while%20(count%20%3C%20n)%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20if%20(ref_ptr%20%3D%3D%20null)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20System.out.println(n%2B%22%20is%20greater%20than%20the%20no%20%22%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22%20of%20nodes%20in%20the%20list%22)%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20return%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20ref_ptr%20%3D%20ref_ptr.next%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20count%2B%2B%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20while%20(ref_ptr%20!%3D%20null)%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20main_ptr%20%3D%20main_ptr.next%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20ref_ptr%20%3D%20ref_ptr.next%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20System.out.println(%22Node%20no.%20%22%2Bn%2B%22%20from%20last%20is%20%22%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20main_ptr.data)%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*%20Inserts%20a%20new%20Node%20at%20front%20of%20the%20list.%20*%2F%0A%20%20%20%20public%20void%20push(int%20new_data)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%2F*%201%20%26%202%3A%20Allocate%20the%20Node%20%26%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Put%20in%20the%20data*%2F%0A%20%20%20%20%20%20%20%20Node%20new_node%20%3D%20new%20Node(new_data)%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F*%203.%20Make%20next%20of%20new%20Node%20as%20head%20*%2F%0A%20%20%20%20%20%20%20%20new_node.next%20%3D%20head%3B%0A%20%0A%20%20%20%20%20%20%20%20%2F*%204.%20Move%20the%20head%20to%20point%20to%20new%20Node%20*%2F%0A%20%20%20%20%20%20%20%20head%20%3D%20new_node%3B%0A%20%20%20%20%7D%0A%20%0A%20%20%20%20%2F*Drier%20program%20to%20test%20above%20methods%20*%2F%0A%20%20%20%20public%20static%20void%20main(String%20%5B%5D%20args)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20LinkedList%20llist%20%3D%20new%20LinkedList()%3B%0A%20%20%20%20%20%20%20%20llist.push(20)%3B%0A%20%20%20%20%20%20%20%20llist.push(4)%3B%0A%20%20%20%20%20%20%20%20llist.push(15)%3B%0A%20%20%20%20%20%20%20%20llist.push(35)%3B%0A%20%0A%20%20%20%20%20%20%20%20llist.printNthFromLast(4)%3B%0A%20%20%20%20%7D%0A%7D%20%2F%2F%20This%20code%20is%20contributed%20by%20Rajat%20Mishra” message=”” highlight=”” provider=”manual”/]

Output:

Node no. 4 from last is 35

Time Complexity: O(n) where n is the length of linked list

[ad type=”banner”]