Fix the Compactable implementation in Entiers and Listes classes.
[TP_POO.git] / TP2 / Entiers.java
index 80fcc9016434b0b5ec16c3f946c1999e37097fa3..b690d10426728590f0efa8365a448f1cd531baa6 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
@@ -105,4 +104,13 @@ class Entiers extends Structure {
         }
     }
 
+    public void compacter(int nElements) {
+        if (current_size - nElements > 0) {
+            // Remove the last nElements
+            current_size -= nElements;
+        } else {
+            current_size = 0;
+        }
+    }
+
 }