Linked List

Linked List Interview questions

More Questions

  1. Reverse a singly linked list iteratively and recursively.
  2. Detect and remove a cycle in a linked list.
  3. Merge two sorted linked lists.
  4. Find the nth node from the end of a linked list.
  5. Add two numbers represented by linked lists.
  6. Check if a linked list is a palindrome.
  7. Flatten a multilevel doubly linked list.
  8. Delete a node in the middle of a singly linked list given only access to that node.
  9. Partition a linked list around a value x such that all nodes less than x come before nodes greater than or equal to x.
  10. Find the intersection point of two singly linked lists.

Leave a Reply

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