Merge Sort
1. Consider the following array:
A = [9, 100, -1, 4, 8, 6, 9]
Determine the number of iterations of division (same as the number of iterations of merging) as well as the total number of division operations that will be required for the above array.
A = [9, 100, -1, 4, 8, 6, 9]
Determine the number of iterations of division (same as the number of iterations of merging) as well as the total number of division operations that will be required for the above array.
2. During which step does the actual sorting occur?
3. Which of the following accurately describes the merge step in the algorithm (assume ascending order sort)?