When does the recursion stop?
Which order lists the three moves of divide and conquer?
If splitting is free and combining scans the pieces, the combine dominates.
Circle one: True False
One piece holds almost all the input, yet the split is free and the combine is cheap. Why can this still pay off?
A method splits for free, solves both halves the same way, and scans the halves to combine. Where does most of the work sit?
You split a task into 2 pieces, then split every piece into 2 again. How many pieces do you hold?
Answer: ______________
A friend must add up a long list with divide and conquer. Which plan follows the method?
A student rejects an uneven split without checking any costs. What is the mistake?