heap removed impl, tests to fix

This commit is contained in:
Clement Lacau 2024-04-05 00:37:26 +02:00
parent cf4f368912
commit 2e20b9b3a6

View file

@ -138,6 +138,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)) {
throw new ElementNotFoundException(x);
}
int pere = 1;
int indice_suppression = array.indexOf(x);
array.remove(indice_suppression);
arraySet(indice_suppression, array.get(this.currentSize));
array.remove(this.currentSize);
percolateUp(indice_suppression);
this.currentSize--;
}
@Override