Update insertion_sort.md

This commit is contained in:
Meet Zaveri
2018-02-20 15:53:05 +05:30
committed by GitHub
parent 1b7e4c4b41
commit dc76f610f8

View File

@ -1,4 +1,6 @@
### insertion_sort
## insertion_sort
### Insertion Sort Algorithm
On a very basic level, an insertion sort algorithm contains the logic of shifting around and inserting elements in order to sort an unordered list of any size. The way that it goes about inserting elements, however, is what makes insertion sort so very interesting!