reverted line 27

This commit is contained in:
Ayaan Khan 2020-06-24 02:22:20 +05:30
parent 7cd335d371
commit 62aafd1c50

View File

@ -22,8 +22,8 @@ class MinHeap {
harr = new int[cap]; harr = new int[cap];
} }
/** to heapify a subtree with the root at given index /** to heapify a subtree with the root at given index */
*/ void MinHeapify(int);
int parent(int i) { return (i - 1) / 2; } int parent(int i) { return (i - 1) / 2; }