1
0
mirror of https://gitlab.com/magicalsoup/Highschool.git synced 2025-01-23 16:11:46 -05:00

Update Insertion Sort.md

This commit is contained in:
James Su 2019-11-06 17:01:53 +00:00
parent 552044812a
commit bee1e0a88b

View File

@ -41,7 +41,7 @@ for(int i=1; i<numbers.length; i++) {
}
numbers[j + 1] = key;
}
```
## Attributes
- Stable
- Instead of swapping elements, all elements are shifted one position ahead