Please enable JavaScript.
Coggle requires JavaScript to display documents.
Algorithms (Sorting algoitms (Insertion Sort (Moves one value at a time…
Algorithms
Sorting algoitms
-
Merge Sort
divides the lists up puts the values in order and then puts them back together with the other lists ordering them each time
-
Quick Sort
creates a split taking the center value and then places anything lower than it on one side and then anything higher on the other side it then orders the sub lists using the same method
-
-
Traversals
Graph Traversal
Breath First
Go to all the neighbours and the go down each of the neighnours and visit each of its neighbours and the move dwon to the next ones and repeat
-
-