Recursive Sorting
Problem: You are given a list of 64 numbers and you are asked to SORT this list.
Solution: Divide the list into two lists each with 32 numbers; sort them recursively using the same algorithm; and then merge them.
Previous slide
Next slide
Back to first slide
View graphic version