Coding Interview Question: Given a linked list where each node has two pointers, one to the next node and one to a random node in the list, clone the list.
Coding Interview Question: Given a tree, convert it into a doubly linked list from left to right by modifying the existing pointers. Click for the solution.