Please enable JavaScript.
Coggle requires JavaScript to display documents.
Sorting Algorithm - Coggle Diagram
Sorting Algorithm
-
-
Divide-and-conquer
Steps
-
2 - Solve the subproblems, typically recursively
3 - If necessary, use the solution of the subproblems to solve the original problem
Merge Sort
Divides an array in two halves sorting each of them recursively, and then merging into a new sorted array
-