_bubbleUp(){
// access the value at the end
// reorganize the heap
let currentIndex = this.size() - 1
while(this._compare(currentIndex, this._parent(currentIndex))){
this._swap(currentIndex, this._parent(currentIndex))
currentIndex = this._parent(currentIndex)
}
}
We want to run a simulation on the stones as follows:
Continue the simulation until there is no more than one stone remaining.
Return the weight of the last remaining stone or return 0 if none remain.
Example 1:
Explanation:
We smash 6 and 4 and are left with a 2, so the array becomes [2,3,2,2].
We smash 3 and 2 and are left with a 1, so the array becomes [1,2,2].
We smash 2 and 2, so the array becomes [1].
Example 2:
Constraints:
We need to organise our stones based on their weight:
Implementing Max Heap
removing 45
reorganizing the heap i.e bubbleDown
#Heap #dataStructure #priorityQueues