Add the Compactable interface.
[TP_POO.git] / TP2 / Entiers.java
index a1e18b64911ed78cc45b4dcf8bcdc6ef348b9870..7d55c4264a81aead1a278a11ed0549e90dbd0b7c 100644 (file)
@@ -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
@@ -106,7 +105,8 @@ class Entiers extends Structure {
     }
 
     public void compacter(int nElements) {
-
+        // Remove the last nElements
+        current_size -= nElements;
     }
 
 }