Q31
Print a singly-linked list backwards, in constant space and linear time
Q32
Given a Binary Search Tree, iterate over the elements without using recursion
Q33
Implement a Queue using only Stacks
Q34
Write a solid, secure code for strstr()
Q35
Find an element in a 2D array sorted both along row and column.
Table[i][j] > Table[i][j + 1]
Table[i][j] > Table[i + 1][j]