File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 32
32
< select id ="algorithms ">
33
33
< option value ="bubble "> Bubble Sort</ option >
34
34
< option value ="comb "> Comb Sort</ option >
35
+ < option value ="heap "> Heap Sort</ option >
35
36
< option value ="insertion "> Insertion Sort</ option >
36
37
< option value ="selection "> Selection Sort</ option >
37
38
< option value ="shell "> Shell Sort</ option >
@@ -68,6 +69,14 @@ <h2 class="algo-header">Comb Sort</h2>
68
69
</ span >
69
70
</ div >
70
71
72
+ < div id ="heap-info " class ="algo-container hidden ">
73
+ < h2 class ="algo-header "> Heap Sort</ h2 >
74
+ < span class ="algo-details ">
75
+ Heap sort is a comparison based sorting technique based on Binary Heap data structure. It is similar to selection sort where we
76
+ first find the maximum element and place the maximum element at the end. We repeat the same process for remaining element.
77
+ </ span >
78
+ </ div >
79
+
71
80
< div id ="insertion-info " class ="algo-container hidden ">
72
81
< h2 class ="algo-header "> Insertion Sort</ h2 >
73
82
< span class ="algo-details ">
You can’t perform that action at this time.
0 commit comments