When merging two sorted halves, which front value do you copy next?
What is the base case of merge sort?
Splitting eight values down to single items takes how many levels?
Answer: ______________
Why does merge sort cost order n log n?
Merge 1 4 6 with 2 3 5. How many comparisons place all six items?
Order n log n beats order n squared badly once inputs grow large.
Circle one: True False
A student merges by always copying the larger front value. What results?
About how many split levels does a list of a thousand need?