Please enable JavaScript.
Coggle requires JavaScript to display documents.
Brute Force and Exhaustive Search, Decrease-and-Conquer, Divide-and…
-
Decrease-and-Conquer
exploiting the relationship between a solution to a given instance of a problem and a solution to its smaller instance
-
incremental approach: bottom-up variation, starting with a solution to the smallest instance
-
-
-
Insertion Sort
this method examine each item and compare it to items on its left, inserting the item in the correct position in the array
-
-