| Class Summary |
| BinarySearch | Class for performing "instrumented" binary search. |
| BubbleSort | Class for performing "instrumented" bubble sort. |
| Mergesort | Class for performing "instrumented" mergesort. |
| Quicksort | Class for performing "instrumented" quicksort. |
| SelectionSort | Class for performing "instrumented" selection sort. |
| SequentialSearch | Class for performing "instrumented" sequential search. |
| Sorter | Class for performing "instrumented" sorts and searches (where we count how
many comparisons and swaps were needed). |
| Sorter.SearchResult | Class to hold counter and "found" values resulting from a search. |
| Sorter.SortResult | Class to hold counter values resulting from a sort. |
| SortIntegers | Class for testing Sorter with Integer objects. |