Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Sorting Algorithms , image - Coggle Diagram
Data Sorting Algorithms
Bubble Sort
-
-
Once sorted, the numbers will be in ascending order
-
-
Merge Sort
-
-
-
-
A merge sort splits the list of data into smaller parts and compares each bit of data and puts them in the right order, then it puts some smaller bits of data together compares them and puts them in order ,and repeats this until the whole list is back together and in order
-
Insertion Sort
Insertion sort takes each item and puts it in its right place from left to right until the whole list is in order
-
-
-
-
-