Skip to content

Commit 24eecec

Browse files
committed
TheAlgorithms#45 wiki的最新提交
1 parent b1a2b97 commit 24eecec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Misc/heap_sort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public void sort(int arr[])
2222
}
2323

2424
// To heapify a subtree rooted with node i which is
25-
// an index in arr[]. n is size of heap
25+
// an index in arr n is size of heap
2626
void heapify(int arr[], int n, int i)
2727
{
2828
int largest = i; // Initialize largest as root

0 commit comments

Comments
 (0)