Real interview questions from top companies for Linked list. Includes theoretical concepts and coding problems.
What is a linked list and how does it differ from an array?
A linked list is a linear data structure where each element is a separate object, and each element (called a node) points to the next node in the sequence. This structure allows for efficient insertion and deletion of elements from any position in the sequence, whereas arrays have fixed sizes and require shifting all elements after the insertion or deletion point.
What are the types of linked lists?
There are several types of linked lists, including singly linked lists, doubly linked lists, and circularly linked lists. Singly linked lists have nodes that only point to the next node, while doubly linked lists have nodes that point to both the previous and next nodes. Circularly linked lists have nodes that form a circle, with the last node pointing back to the first node.
What is the time complexity of inserting a node at the beginning of a linked list?
The time complexity of inserting a node at the beginning of a linked list is O(1), because it only requires updating the head pointer to point to the new node.
What is the time complexity of deleting a node from a linked list?
The time complexity of deleting a node from a linked list depends on the location of the node. If the node to be deleted is the head node, the time complexity is O(1). If the node to be deleted is at the end of the list, the time complexity is O(n), where n is the number of nodes in the list. If the node to be deleted is at a random location, the time complexity is O(n) in the worst case.
How do you implement a stack using a linked list?
A stack can be implemented using a linked list by using the linked list as a Last-In-First-Out (LIFO) data structure. The top of the stack is the head of the linked list, and elements are added and removed from the top of the stack by inserting and deleting nodes at the head of the linked list.
How do you implement a queue using a linked list?
A queue can be implemented using a linked list by using the linked list as a First-In-First-Out (FIFO) data structure. The front of the queue is the head of the linked list, and the rear of the queue is the last node in the linked list. Elements are added to the rear of the queue by inserting nodes at the end of the linked list, and elements are removed from the front of the queue by deleting nodes from the head of the linked list.
What is the advantage of using a linked list over an array?
The advantage of using a linked list over an array is that linked lists can efficiently insert and delete elements from any position in the sequence, whereas arrays require shifting all elements after the insertion or deletion point. Linked lists also use less memory than arrays because they only allocate memory for the nodes that are actually needed.
What is the disadvantage of using a linked list?
The disadvantage of using a linked list is that it can be slower than an array for random access, because each node must be traversed sequentially to find a specific element. Linked lists also require more memory than arrays because each node has a pointer to the next node, which can be a significant overhead for large lists.
How do you handle memory allocation and deallocation in a linked list?
Memory allocation and deallocation in a linked list are handled by the programmer, who must manually allocate memory for each node using a memory allocation function such as malloc, and deallocate memory for each node using a memory deallocation function such as free.
What is the purpose of the 'next' pointer in a linked list node?
The 'next' pointer in a linked list node is used to point to the next node in the sequence, allowing the program to traverse the linked list by following the 'next' pointers from one node to the next.
What is the purpose of the 'prev' pointer in a doubly linked list node?
The 'prev' pointer in a doubly linked list node is used to point to the previous node in the sequence, allowing the program to traverse the linked list in both forward and backward directions.
How do you detect a cycle in a linked list?
A cycle in a linked list can be detected by using a slow and fast pointer approach, where the slow pointer moves one node at a time and the fast pointer moves two nodes at a time. If the fast pointer catches up to the slow pointer, then there is a cycle in the linked list.
What is the time complexity of finding the middle node of a linked list?
The time complexity of finding the middle node of a linked list is O(n), where n is the number of nodes in the list, because the program must traverse the entire list to find the middle node.
How do you reverse a linked list?
A linked list can be reversed by iterating through the list and reversing the 'next' pointers of each node, so that the last node becomes the first node and the first node becomes the last node.
What is the purpose of a sentinel node in a linked list?
A sentinel node in a linked list is a dummy node that is used to simplify the code and reduce the number of special cases that must be handled, such as inserting or deleting nodes at the beginning or end of the list.
How do you implement a hash table using a linked list?
A hash table can be implemented using a linked list by using the linked list as a collision resolution mechanism, where each bucket in the hash table contains a linked list of elements that hash to the same index.
What is the advantage of using a doubly linked list over a singly linked list?
The advantage of using a doubly linked list over a singly linked list is that doubly linked lists can be traversed in both forward and backward directions, whereas singly linked lists can only be traversed in the forward direction.
What is the disadvantage of using a doubly linked list?
The disadvantage of using a doubly linked list is that it requires more memory than a singly linked list, because each node has two pointers (next and prev) instead of one.
How do you handle node deletion in a doubly linked list?
Node deletion in a doubly linked list is handled by updating the 'next' and 'prev' pointers of the adjacent nodes to point to each other, effectively removing the node from the list.
What is the purpose of a 'dummy' node in a linked list?
A 'dummy' node in a linked list is a node that is used to simplify the code and reduce the number of special cases that must be handled, such as inserting or deleting nodes at the beginning or end of the list.
Write a function to insert a node at the beginning of a linked list
functioninsertAtBeginning(head, data) {
var newNode = newNode(data);
newNode.next = head;
head = newNode;
return head;
}
Write a function to delete a node from a linked list
functiondeleteNode(head, data) {
if (head == null) returnnull;
if (head.data == data) {
head = head.next;
return head;
}
var current = head;
while (current.next != null) {
if (current.next.data == data) {
current.next = current.next.next;
return head;
}
current = current.next;
}
return head;
}
Write a function to find the middle node of a linked list
functionfindMiddleNode(head) {
var slow = head;
var fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
}
return slow;
}
Write a function to reverse a linked list
functionreverseList(head) {
var prev = null;
var current = head;
while (current != null) {
var next = current.next;
current.next = prev;
prev = current;
current = next;
}
return prev;
}
Write a function to detect a cycle in a linked list
functiondetectCycle(head) {
var slow = head;
var fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) returntrue;
}
returnfalse;
}
Write a function to find the nth node from the end of a linked list
functionfindNthNodeFromEnd(head, n) {
var length = 0;
var current = head;
while (current != null) {
length++;
current = current.next;
}
current = head;
for (var i = 0; i < length - n; i++) {
current = current.next;
}
return current;
}
Write a function to merge two sorted linked lists
functionmergeLists(list1, list2) {
var dummy = newNode(0);
var current = dummy;
while (list1 != null && list2 != null) {
if (list1.data < list2.data) {
current.next = list1;
list1 = list1.next;
} else {
current.next = list2;
list2 = list2.next;
}
current = current.next;
}
if (list1 != null) {
current.next = list1;
} else {
current.next = list2;
}
return dummy.next;
}
Write a function to find the first node of the loop in a linked list
functionfindFirstNodeOfLoop(head) {
var slow = head;
var fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) break;
}
if (slow != fast) returnnull;
slow = head;
while (slow != fast) {
slow = slow.next;
fast = fast.next;
}
return slow;
}
Write a function to find the node where the cycle begins in a linked list
functionfindCycleBeginNode(head) {
var slow = head;
var fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) break;
}
if (slow != fast) returnnull;
slow = head;
while (slow != fast) {
slow = slow.next;
fast = fast.next;
}
return slow;
}
Write a function to find the length of a linked list
functionfindLength(head) {
var length = 0;
var current = head;
while (current != null) {
length++;
current = current.next;
}
return length;
}
SHARE ARTICLE
Choose Interviewer type
Please review your order carefully before confirming. Once your purchase is processed, refunds will not be available.