Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Heaps #156

Merged
merged 16 commits into from
Nov 5, 2019
Prev Previous commit
Next Next commit
fix: used pop() instead of splice()
  • Loading branch information
ashokdey committed Nov 4, 2019
commit c2f5934f28099c7bb7174b146ead275b9c94fc80
7 changes: 3 additions & 4 deletions src/_DataStructures_/Heaps/MaxHeap/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,24 @@ class MaxHeap {
return this.heap[0] || null;
}

// eslint-disable-next-line consistent-return
remove() {
// return the element at the root
const max = this.heap[0] || null;
if (this.heap.length > 1) {
// move the leaf to the root
this.heap[0] = this.heap[this.heap.length - 1];
this.heap.splice(this.heap.length - 1, 1);
this.heap.pop();
// restore the heapify property
// eslint-disable-next-line no-underscore-dangle
this.__heapify(0);
return max;
}

if (this.heap.length === 1) {
this.heap.splice(this.heap.length - 1, 1);
this.heap.pop();
return max;
}

return max;
}

__heapify(index) {
Expand Down