X-Git-Url: https://git.piment-noir.org/?p=TP_POO.git;a=blobdiff_plain;f=TP2%2FEntiers.java;h=7d55c4264a81aead1a278a11ed0549e90dbd0b7c;hp=80fcc9016434b0b5ec16c3f946c1999e37097fa3;hb=5731ae5f40887e5a299eeca6d9047c06cd17ab41;hpb=c7c510eb1829b97b642bd584a8737103b07efeb7 diff --git a/TP2/Entiers.java b/TP2/Entiers.java index 80fcc90..7d55c42 100644 --- a/TP2/Entiers.java +++ b/TP2/Entiers.java @@ -75,7 +75,6 @@ class Entiers extends Structure { System.out.println("Aucune valeur à supprimer"); return false; } - for (int i = 0; i < getCurrentSize(); i++) { if (int_array[i] == value) { // Deleting the element in the tab @@ -105,4 +104,9 @@ class Entiers extends Structure { } } + public void compacter(int nElements) { + // Remove the last nElements + current_size -= nElements; + } + }