Skip to content
Linked List
Linked List Interview questions
More Questions
- Reverse a singly linked list iteratively and recursively.
- Detect and remove a cycle in a linked list.
- Merge two sorted linked lists.
- Find the nth node from the end of a linked list.
- Add two numbers represented by linked lists.
- Check if a linked list is a palindrome.
- Flatten a multilevel doubly linked list.
- Delete a node in the middle of a singly linked list given only access to that node.
- Partition a linked list around a value
x
such that all nodes less than x
come before nodes greater than or equal to x
.
- Find the intersection point of two singly linked lists.