8000 Update Heap Sort.md · Gekk0r/Algorithms-Explanation@43068c3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 43068c3

Browse files
authored
Update Heap Sort.md
1 parent 627fae0 commit 43068c3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Sorting Algorithms/Heap Sort.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,17 @@ The heapify procedure calls itself recursively to build heap
5353
in top down manner.
5454
```
5555

56-
![alt text][heap-image]
57-
58-
[heap-image]: https://en.wikipedia.org/wiki/Heapsort#/media/File:Heapsort-example.gif "Heap Sort"
56+
![heap-image](https://upload.wikimedia.org/wikipedia/commons/1/1b/Sorting_heapsort_anim.gif "Heap Sort")
5957

6058
#### Code Implementation Links
6159

62-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/HeapSort.java)
60+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/HeapSort.java)
6361
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Heap%20Sort%20.cpp)
6462
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
6563
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/Heapsort.go)
6664
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/heap_sort.rb)
6765
- [C-sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/heap_sort.cs)
68-
- [C](https://github.com/TheAlgorithms/C/blob/master/Sorts/HeapSort.c)
66+
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/HeapSort.c)
6967
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/heapSort.js)
7068

7169

0 commit comments

Comments
 (0)
0