Write a function that takes a head node and an integer value n and then returns the nth to the last node in the linked list. For example, given:
class Node: def __init__(self, value): self.value = value self.nextnode = None
a = Node(1) b = Node(2) c = Node(3) d = Node(4) e = Node(5) a.nextnode = b b.nextnode = c c.nextnode = d d.nextnode = e # This would return the node d with a value of 4, # because its the 2nd to last node. target_node = nth_to_last_node(2, a)
target_node.value
4
One approach to this problem is this:
Imagine you have a bunch of nodes and a “block” which is n-nodes wide. We could walk this “block” all the way down the list, and once the front of the block reached the end, then the other end of the block would be the Nth node!
So to implement this “block” we would just have two pointers a left and right pair of pointers. Let’s mark out the steps we will need to take:
Let’s see the code:
def nth_to_last_node(n, head): left_pointer = head right_pointer = head # Set right pointer at n nodes away from head for i in range(n-1): # Check for edge case of not having enough nodes! if not right_pointer.nextnode: raise LookupError('Error: n is larger than the linked list.') # Otherwise, we can set the block right_pointer = right_pointer.nextnode # Move the block down the linked list while right_pointer.nextnode: left_pointer = left_pointer.nextnode right_pointer = right_pointer.nextnode # Now return left pointer, it's at the nth to last element! return left_pointer
""" RUN THIS CELL TO TEST YOUR SOLUTION AGAINST A TEST CASE PLEASE NOTE THIS IS JUST ONE CASE """ from nose.tools import assert_equal a = Node(1) b = Node(2) c = Node(3) d = Node(4) e = Node(5) a.nextnode = b b.nextnode = c c.nextnode = d d.nextnode = e #### class TestNLast(object): def test(self,sol): assert_equal(sol(2,a),d) print 'ALL TEST CASES PASSED' # Run tests t = TestNLast() t.test(nth_to_last_node)
ALL TEST CASES PASSED
Recommended: Understand The Singly Linked List and its Operation
If you like my post please follow me to read my latest post on programming and technology.
Problem Statement: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Example…
Given an integer A. Compute and return the square root of A. If A is…
Given a zero-based permutation nums (0-indexed), build an array ans of the same length where…
A heap is a specialized tree-based data structure that satisfies the heap property. It is…
What is the Lowest Common Ancestor? In a tree, the lowest common ancestor (LCA) of…