Linked List Interview questions

I hadn’t done much programming for a while and thought I’d best brush up on some basic data structures and algorithm.

The following is from Programming Interviews Exposed. I implemented some of the Linked List stuff in the first section in Python. The code came out pretty close to the solutions in the book which were mainly in C++.

  1. class Stack:
  2. """
  3. Adapted from Programming Interviews Exposed problems
  4. LinkedList implementation that keeps track of head and tail
  5. Basic tests - push,pop,remove
  6. >>> s=Stack()
  7. >>> s.push(1)
  8. >>> s.push(2)
  9. >>> s.push(3)
  10. >>> s.push(4)
  11. >>> s.pop()
  12. 4
  13. >>> e=s.head.next
  14. >>> s.remove(e)
  15. True
  16. >>> s.head.data
  17. 3
  18. >>> s.tail.data
  19. 1
  20. >>> e=s.head.next
  21. >>> s.remove(e)
  22. True
  23. >>> s.head.data
  24. 3
  25. >>> s.tail.data
  26. 3
  27. >>> e=s.head
  28. >>> s.remove(e)
  29. True
  30. >>> s.head
  31. >>> s.tail
  32. """
  33. def __init__(self):
  34. self.head=None
  35. self.tail=None
  36. def push(self,data):
  37. if self.head==None:
  38. self.head=Element(data,None)
  39. self.tail=self.head
  40. else:
  41. self.head=Element(data,self.head)
  42. def pop(self):
  43. oldhead=self.head
  44. if oldhead==None:
  45. return None
  46. self.head=oldhead.next
  47. if self.head==None:
  48. self.tail=None
  49. return oldhead.data
  50. def remove(self,element):
  51. if self.head==None:
  52. return False
  53. if self.head==element:
  54. self.head=self.head.next
  55. if self.head==None:
  56. self.tail=None
  57. return True
  58. curr=self.head
  59. while curr!=None:
  60. if curr.next==element:
  61. curr.next=curr.next.next
  62. if curr.next==None:
  63. self.tail=curr
  64. return True
  65. else:
  66. curr=curr.next
  67. return False
  68. def insertAfter(self,element,data):
  69. """
  70. >>> s=Stack()
  71. >>> s.insertAfter(None,1)
  72. True
  73. >>> s.head.data
  74. 1
  75. >>> s.tail.data
  76. 1
  77. >>> s.insertAfter(None,2)
  78. True
  79. >>> s.head.data
  80. 2
  81. >>> s.tail.data
  82. 1
  83. >>> e=s.head
  84. >>> s.insertAfter(e,3)
  85. True
  86. >>> s.head.data
  87. 2
  88. >>> s.tail.data
  89. 1
  90. >>> s.head.next.data
  91. 3
  92. >>> e=s.tail
  93. >>> s.insertAfter(e,4)
  94. True
  95. >>> s.head.data
  96. 2
  97. >>> s.tail.data
  98. 4
  99. """
  100. if (element==None)|(self.head==None):
  101. self.head=Element(data,self.head)
  102. if self.head.next==None:
  103. self.tail=self.head
  104. return True
  105. curr=self.head
  106. while curr!=None:
  107. if curr==element:
  108. curr.next=Element(data,curr.next)
  109. if curr.next.next==None:
  110. self.tail=curr.next
  111. return True
  112. curr=curr.next
  113. return False
  114. def removeHead(self):
  115. """
  116. >>> s=Stack()
  117. >>> s.removeHead()
  118. >>> s.head
  119. >>> s.tail
  120. >>> s.push(1)
  121. >>> s.removeHead()
  122. >>> s.head
  123. >>> s.tail
  124. >>> s.push(1)
  125. >>> s.push(2)
  126. >>> s.removeHead()
  127. >>> s.head.data
  128. 1
  129. >>> s.tail.data
  130. 1
  131. """
  132. if self.head!=None:
  133. self.head=self.head.next
  134. if self.head==None:
  135. self.tail=None
  136. def findMToLastElement(self,m):
  137. """
  138. >>> s=Stack()
  139. >>> s.push(1)
  140. >>> s.push(2)
  141. >>> s.push(3)
  142. >>> s.findMToLastElement(0).data
  143. 1
  144. >>> s.findMToLastElement(1).data
  145. 2
  146. >>> s.findMToLastElement(2).data
  147. 3
  148. >>> s.findMToLastElement(3)
  149. """
  150. mToLast=None
  151. curr=self.head
  152. count=0
  153. while curr!=None:
  154. if count==m:
  155. mToLast=self.head
  156. if count>m:
  157. mToLast=mToLast.next
  158. if mToLast==None:
  159. return None
  160. curr=curr.next
  161. count+=1
  162. return mToLast
  163. class Element:
  164. def __init__(self,data,next=None):
  165. self.data=data
  166. self.next=next
  167. if __name__ == "__main__":
  168. import doctest
  169. doctest.testmod()
class Stack:
    """
    Adapted from Programming Interviews Exposed problems
    LinkedList implementation that keeps track of head and tail

    Basic tests - push,pop,remove
    >>> s=Stack()
    >>> s.push(1)
    >>> s.push(2)
    >>> s.push(3)
    >>> s.push(4)
    >>> s.pop()
    4
    >>> e=s.head.next
    >>> s.remove(e)
    True
    >>> s.head.data
    3
    >>> s.tail.data
    1
    >>> e=s.head.next
    >>> s.remove(e)
    True
    >>> s.head.data
    3
    >>> s.tail.data
    3
    >>> e=s.head
    >>> s.remove(e)
    True
    >>> s.head
    >>> s.tail
    """

    def __init__(self):
        self.head=None
        self.tail=None

    def push(self,data):
        if self.head==None:
            self.head=Element(data,None)
            self.tail=self.head
        else:
            self.head=Element(data,self.head)

    def pop(self):
        oldhead=self.head
        if oldhead==None:
            return None
        self.head=oldhead.next
        if self.head==None:
            self.tail=None
        return oldhead.data

    def remove(self,element):
        if self.head==None:
            return False
        if self.head==element:
            self.head=self.head.next
            if self.head==None:
                self.tail=None
            return True
        curr=self.head
        while curr!=None:
            if curr.next==element:
                curr.next=curr.next.next
                if curr.next==None:
                    self.tail=curr
                return True
            else:
                curr=curr.next
                return False

    def insertAfter(self,element,data):
        """
        >>> s=Stack()
        >>> s.insertAfter(None,1)
        True
        >>> s.head.data
        1
        >>> s.tail.data
        1
        >>> s.insertAfter(None,2)
        True
        >>> s.head.data
        2
        >>> s.tail.data
        1
        >>> e=s.head
        >>> s.insertAfter(e,3)
        True
        >>> s.head.data
        2
        >>> s.tail.data
        1
        >>> s.head.next.data
        3
        >>> e=s.tail
        >>> s.insertAfter(e,4)
        True
        >>> s.head.data
        2
        >>> s.tail.data
        4
        """
        if (element==None)|(self.head==None):
            self.head=Element(data,self.head)
            if self.head.next==None:
                self.tail=self.head
            return True
        curr=self.head
        while curr!=None:
            if curr==element:
                curr.next=Element(data,curr.next)
                if curr.next.next==None:
                    self.tail=curr.next
                return True
            curr=curr.next
        return False

    def removeHead(self):
        """
        >>> s=Stack()
        >>> s.removeHead()
        >>> s.head
        >>> s.tail
        >>> s.push(1)
        >>> s.removeHead()
        >>> s.head
        >>> s.tail
        >>> s.push(1)
        >>> s.push(2)
        >>> s.removeHead()
        >>> s.head.data
        1
        >>> s.tail.data
        1
        """
        if self.head!=None:
            self.head=self.head.next
        if self.head==None:
            self.tail=None

    def findMToLastElement(self,m):
        """
        >>> s=Stack()
        >>> s.push(1)
        >>> s.push(2)
        >>> s.push(3)
        >>> s.findMToLastElement(0).data
        1
        >>> s.findMToLastElement(1).data
        2
        >>> s.findMToLastElement(2).data
        3
        >>> s.findMToLastElement(3)
        """
        mToLast=None
        curr=self.head
        count=0
        while curr!=None:
            if count==m:
                mToLast=self.head
            if count>m:
                mToLast=mToLast.next
                if mToLast==None:
                    return None
            curr=curr.next
            count+=1
        return mToLast

class Element:
    def __init__(self,data,next=None):
        self.data=data
        self.next=next

if __name__ == "__main__":
    import doctest
    doctest.testmod()
This entry was posted in programming and tagged , , . Bookmark the permalink.

2 Responses to Linked List Interview questions

  1. Pol says:

    Just a minor comment:
    According to “Programming Interviews Exposed”,
    s.findMToLastElement(0).data should return the tail of the list and so s.findMToLastElement(1).data should return 2 in your test case.
    You can easily fix that in line 166 and 167.

  2. nolfonzo says:

    Thanks Pol.

    I think moving my count+=1 down to the end of the function fixes it (as corrected above)

Leave a Reply

Your email address will not be published. Required fields are marked *