mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 07:25:42 +08:00
deleted line 27
This commit is contained in:
@@ -24,7 +24,6 @@ class MinHeap {
|
||||
|
||||
/** 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