Status: Tags: #archivedCards/cmpt125/algorithms Links: Sorting Algorithms
Insertion Sort
Principles
?
- Good for small n’s
- First elem considered sorted
Big O for best, average, worst ?
- For each element, moves when it is smaller than previous index
- Average and worst running time $O(N^2)$
- Possible for all elements to traverse all the way across
- Best if sorted, no swaps, so O(N) as it still needs to iterate through
Question
2018-5
[8 points] How manyswapswill Insertion Sort performon the input [9, 6, 2, 1, 4] ? ANSWER: 8 swaps Insert 9: 0 swaps. Result [9, 6, 2, 1, 4] Insert 6: 1 swap: (6,9). Result [6, 9, 2, 1, 4] Insert 2: 2 swaps: (2,9), (2,6). Result [2, 6, 9, 1, 4] Insert 1: 3 swaps: (1,9) (1,6), (1,2). Result [1, 2, 6, 9, 4] Insert 4: 2 swaps: (4,9), (4,6). Result [1, 2, 4, 6, 9]
Implementation
void insertionSort(int arr[], int n) ?
|
|
Backlinks
|
|
References:
Created:: 2021-10-18 16:17