logo Practice-It logo

mergeSort

Language/Type: Java merge sort sorting
Author: Eric Spishak

Trace the complete execution of the

int[] numbers = {45, 78, 89, 34, 23, 12, 67, 56};
mergeSort(numbers);

Make sure to format your answers with each sub-array surrounded by { } braces, such as {1, 2} {3, 4}.

1st split
2nd split
3rd split
1st merge
2nd merge
3rd merge

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.