Activity 01
Card Sort: Physical Merge Sort
Distribute shuffled number cards to small groups. Students recursively divide piles, sort singles, and merge by comparing top cards, recording steps on worksheets. Groups present one merge to the class for feedback.
Differentiate between iterative and recursive approaches in sorting algorithms.
Facilitation TipIn Efficiency Race, set identical random arrays for each pair to prevent skewed comparisons and prompt discussion of input size impacts.
What to look forProvide students with a small, unsorted array (e.g., [5, 2, 8, 1, 9]). Ask them to manually trace the first two levels of recursion for merge sort, showing how the array is split and the initial merge steps. They should write down the state of the array after each merge.