diff --git a/README.md b/README.md index df206f1..e5ce262 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Table of contents * [Bubble Sort](#bubble-sort) * [Insertion Sort](#insertion-sort) * [Selection Sort](#selection-sort) + * [Heap Sort](#heap-sort) * [Shell Sort](#shell-sort) * [Merge Sort](#merge-sort) * [Quick Sort](#quick-sort) @@ -113,6 +114,13 @@ The selection sort algorithm sorts an array by repeatedly finding the minimum el | ------------- |:-------------:| ||| + +## Heap Sort + +|heap_sort_scale.py|heap_sort_color.py| +| ------------- |:-------------:| +||| + ## Shell Sort
The shell sort algorithm extends the insertion sort algorithm and is very efficient in sorting widely unsorted arrays.