Here is an array of ten integers:5,3, 8, 9,1, 7, 0,2, 6, 4. Give step by step execution of Merge Sort
Answers
Answered by
2
Answer:
Explanation:
Merge sort is a top-down approach uses recursion to sort the data. It divides the unsorted list into equal sub-lists and sort each sub-list recursively. Consider an array of 10 integers: 5 3 8 9 1
Similar questions