Skip to content

Commit 62aafd1

Browse files
committed
reverted line 27
1 parent 7cd335d commit 62aafd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/binaryheap.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class MinHeap {
2222
harr = new int[cap];
2323
}
2424

25-
/** to heapify a subtree with the root at given index
26-
*/
25+
/** to heapify a subtree with the root at given index */
26+
void MinHeapify(int);
2727

2828
int parent(int i) { return (i - 1) / 2; }
2929

0 commit comments

Comments
 (0)