Skip to content

Commit 5457a91

Browse files
committed
Update heap_sort.h
1 parent 1cc32f7 commit 5457a91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/heap_sort.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ namespace alg
3838
{
3939
heap.insert(array[i],0); //set key with the value of the array,value to 0(no use)
4040
}
41-
42-
// Temporary array to store the minkey of each step,which is deleted from the heap
41+
42+
// Temporary array to store the minkey of each step,which is deleted from the heap
4343
T tempArray[number_of_elements];
4444
for(i=0;i<number_of_elements;i++)
4545
{

0 commit comments

Comments
 (0)