16 - Practice Questions
16 - Practice Questions
Question 1 :
Intersection of Two Linked Lists In a system there are two singly linked list. By some programming
error, the end node of one
of the linked lists got linked to the second list, forming an inverted Y-shaped list. Write a
program to get the point where two linked lists merge.
Question 2 :
Delete N Nodes After M Nodes of a Linked List We have a linked list and two integers M and N.
Traverse the linked list such that you retain M
nodes then delete next N nodes, continue the same till end of the linked list. Difficulty Level:
Rookie.
Question 4 :
Odd Even Linked List We have a Linked List of integers, write a function to modify the linked list such
that all even
numbers appear before all the odd numbers in the modified linked list. Also, keep the order of
even and odd numbers same.
Question 5 :
Merge k Sorted Lists
We have K sorted linked lists of size N each, merge them and print the sorted output.