1. What is the expected (average) number of pointers for a Skip List node?
2. Write a function to remove a node with given value from a Skip List.
3. Write a function to find the ith node on a Skip List.
4. Complete the implementation of the Skip List-based dictionary begun in Section 16.3.1.