Warning This class is being recorded. At least I think it is. It’s probably also being transcribed.
Approximate overview
Academic
Cultural
Peer
Wellness
Misc
Make sure that you have the correct version of the lab.
There is no starter code. Sorry!
Sam wrote an incorrect Quicksort. Sorry!
Sam … how should we experiment with our partition method?
How about
Integer[] vals = new Integer[] { 3, 9, 2, 8, 6, 4, 1, 7, 5 };
Comparator<Integer> compareInts = (x,y) -> x.compareTo(y);
Quicksort.partition(vals, compareInts, 0, vals.length);
System.err.println(Arrays.toString(vals));