mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 07:01:18 +08:00
Fix issue #179.
This commit is contained in:
parent
bdf8a174eb
commit
b1f31cd067
@ -175,7 +175,7 @@ export default class Heap {
|
||||
leftChild !== null
|
||||
&& (
|
||||
parentItem === null
|
||||
|| !this.pairIsInCorrectOrder(parentItem, this.heapContainer[indexToRemove])
|
||||
|| this.pairIsInCorrectOrder(parentItem, this.heapContainer[indexToRemove])
|
||||
)
|
||||
) {
|
||||
this.heapifyDown(indexToRemove);
|
||||
|
@ -169,4 +169,26 @@ describe('MinHeap', () => {
|
||||
minHeap.remove('hey', comparator);
|
||||
expect(minHeap.toString()).toBe('a,bb,dddd');
|
||||
});
|
||||
|
||||
it('should remove values from heap and correctly re-order the tree', () => {
|
||||
const minHeap = new MinHeap();
|
||||
|
||||
minHeap.add(1);
|
||||
minHeap.add(2);
|
||||
minHeap.add(3);
|
||||
minHeap.add(4);
|
||||
minHeap.add(5);
|
||||
minHeap.add(6);
|
||||
minHeap.add(7);
|
||||
minHeap.add(8);
|
||||
minHeap.add(9);
|
||||
|
||||
expect(minHeap.toString()).toBe('1,2,3,4,5,6,7,8,9');
|
||||
|
||||
minHeap.remove(2);
|
||||
expect(minHeap.toString()).toBe('1,4,3,8,5,6,7,9');
|
||||
|
||||
minHeap.remove(4);
|
||||
expect(minHeap.toString()).toBe('1,5,3,8,9,6,7');
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user