CS 127, Data Structures

Analytical Assignment: Questions on Big-O, Searching, and Sorting

Due at the beginning of class on Monday, 10/29/00.

Hand in your answers on paper. There is no need to electronically submit anything for this project.

1. Page 296, E1.

2. Page 296, E3.

3. Page 312, E2.

4. On paper, sort 9, 8, 7, 6, 5, 4, 3, 2, 1 using Shellsort with increments {7, 3, 1}.

5. On paper, sort 3, 1, 4, 1, 5, 9, 2, 6 using merge sort.

6. On paper, sort 3, 1, 4, 1, 5, 9, 2, 6 using quicksort with pivot in the first position.

7. Suppose that you have an array of n elements, containing only two distinct keys, true and false. Give an O(n) algorithm to rearrange the list so that all false elements precede the true elements. You may use only constant extra space.

8. The choice of pivot for quicksort can dramatically affect its performance. Some common choices are:

Comment on each of the above choices. What are the pros and cons of each? Under what situations are they good or bad ideas?