AlgoDS/Algorithm
Searching and Sorting with Array
데먕
2019. 9. 4. 21:12
1. Overview
Two array processing technique that are particularly common are searching and sorting. Searching here refers to finding an item in the array that meets some specified criterion. Sorting refers to rearranging all the items in the array into increasing or decreasing order.
2. Description
Sorting | Process | Big O |
Selection Sort |
|
|
Insertion Sort |
|
|
Merge Sort |
|
|
Quick Sort |
|
|
- Selection Sort
- Insertion Sort
- Merge Sort
- Quick Sort
3. References
http://math.hws.edu/javanotes/c7/s4.html
http://pages.cs.wisc.edu/~bobh/367/SORTING.html
https://runestone.academy/runestone/books/published/pythonds/SortSearch/TheSelectionSort.html