What three steps, in pseudocode, are required for merge sort?
What three steps, in pseudocode, are required for merge sort?
1. Recursively sort 1st half of input array.
2. Recursively sort 2nd half of input array.
3. Merge two sorted subarrays into one.