|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Problems
Problem 3.1:
What is the base case for quicksort? How would combining quicksort
with another sorting algorithm like selection sort change the base case?
[Solution]
Problem 3.2:
How does mergesort achieve its O(nlogn) efficiency?
[Solution]
Problem 3.3:
While mergesort and quicksort are two "smart" and efficient sorts,
there are plenty of inefficient sorts out there, none of which you
would ever want to use in a program. One such sort is the permutation
sort. A permutation of a data set is one configuration, one ordering
of the data. If there are n data elements in a data set, then there
are n! permatuations (you have n choices for which element goes
first, then n - 1 choices for which element goes second, n - 2 choices
for which element goes third, etc, so n!). The permutation sort
algorithm computes every permutation of the data set, and for each
one checks to see if it is in order If it is, the algorithm ends. If
not, it continues on to the next permuation. Write permuation sort
recursively (the easiest way to do it). Note that a recursive
algorithm can still have loops.
[Solution]
Problem 3.4:
Your friend Jane proposes the following algorithm for a sort:
random_sort(data set) {
-randomly swap two elements
-check to see if the data is in order
-if it is return as we're done
-otherwise call random_sort
}
Jane claims that although this algorithm is incredibly inefficient, it
will work. You claim that even if you lucked out and got good random
swaps, in most cases it would cause your computer program to crash. Why?
[Solution]Problem 3.5:
Your friend John claims that quicksort has a worst case running time of
O(n2). Is he right?
[Solution]
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
|
Contact Us | Privacy Policy | Terms and Conditions | About
©2006 SparkNotes LLC, All Rights Reserved.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||