σ=(a1,a2,...an)=A
Output
permutacja ciągu σ taka że
aσ(1)≤aσ(2)≤...≤aσ(n)
Insertion sort (A,n)
- 8,2,4,9,3,6
temp = 2
- 8,8,4,9,3,6
- 2,8,4,9,3,6
temp = 4
- 2,8,8,9,3,6
- 2,4,8,9,3,6
- 2,4,8,9∣3,6
temp = 3
- 2,4,8,9∣9,6
- 2,4,8,8∣9,6
- 2,4,4,8∣9,6
- 2,3,4,8∣9,6
- …
- 2,3,4,6,8,9