wip(binheap): remove
This commit is contained in:
parent
e45e83dc69
commit
04c4316e36
1 changed files with 8 additions and 9 deletions
|
@ -137,17 +137,16 @@ public class BinaryHeap<E extends Comparable<E>> implements PriorityQueue<E> {
|
|||
|
||||
@Override
|
||||
public void remove(E x) throws ElementNotFoundException {
|
||||
// TODO:
|
||||
if (isEmpty() || !array.contains(x)) {
|
||||
// TODO optimize indexOf
|
||||
int index = array.indexOf(x);
|
||||
if (isEmpty() || index == -1 || index >= this.currentSize) {
|
||||
throw new ElementNotFoundException(x);
|
||||
}
|
||||
int indice_suppression = array.indexOf(x);
|
||||
arraySet(indice_suppression, array.get(this.currentSize - 1));
|
||||
//array.remove(this.currentSize);
|
||||
this.currentSize--;
|
||||
if (indice_suppression < this.currentSize) {
|
||||
percolateDown(indice_suppression);
|
||||
}
|
||||
|
||||
// replace element with last element
|
||||
arraySet(index, array.get(--this.currentSize));
|
||||
|
||||
percolateDown(index);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue