mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-02 02:02:23 +08:00
reverted line 27
This commit is contained in:
@@ -22,8 +22,8 @@ class MinHeap {
|
||||
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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user