Table of Contents
Linked List Interview questions
- Remove Nth Node From End of List
- Palindrome Linked List
- Detect Cycle in a Linked List
- Starting node of cycle in Linked List
- Delete the Middle Node of a Linked List
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 thanx
come before nodes greater than or equal tox
. - Find the intersection point of two singly linked lists.
Leave a Reply