exo2: make use of a DP conposite.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 16 Apr 2018 19:36:23 +0000 (21:36 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 16 Apr 2018 19:36:23 +0000 (21:36 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
exo2/ListExtension.java
exo2/Main.java

index 20e9fb22afd422316d1301fed7ef391402b69ed5..df2c789ccfca45e3d89721e8a09a406b3e2931f5 100644 (file)
@@ -1,7 +1,8 @@
 import java.util.List;
 import java.util.ListIterator;
+import java.util.AbstractList;
 
-public class ListExtension<E> {
+public class ListExtension<E> extends AbstractList<E> {
     private List<E> list;
 
     public ListExtension() {
@@ -28,21 +29,34 @@ public class ListExtension<E> {
         return list;
     }
 
-    public boolean add(E e) {
-        return list.add(e);
+    /**
+     * [get description]
+     * @param  index [description]
+     * @return       [description]
+     */
+    public E get(int index) {
+        return list.get(index);
     }
 
+    /**
+     * [size description]
+     * @return [description]
+     */
     public int size() {
         return list.size();
     }
 
+    public boolean add(E e) {
+        return list.add(e);
+    }
+
     /**
      * Should mimic the List<E> add(int index, E value) method
      * @param index [description]
      * @param value [description]
      * @return      [description]
      */
-    public void addIter(int index, E value) {
+    public void add(int index, E value) {
         ListIterator<E> iter = list.listIterator();
         int i = 0;
         // go to the element at index + 1
index 2fbf94fc034bc0d004f16913537f866bbb1ec8cf..75c828bb2d17edca3f2627bcffaf59226967b55c 100644 (file)
@@ -19,7 +19,7 @@ class Main {
 
         long startTime = System.nanoTime();
         // for (int i = 0; i < 100000; i++) {
-        //    array.addIter(array.size() / 2, i);
+        //    array.add(array.size() / 2, i);
         // }
         array.addNelements(array.size() / 2, 100000);
         long stopTime = System.nanoTime();
@@ -29,7 +29,7 @@ class Main {
 
         startTime = System.nanoTime();
         // for (int i = 0; i < 100000; i++) {
-        //     list.addIter(list.size() / 2, i);
+        //     list.add(list.size() / 2, i);
         // }
         list.addNelements(list.size() / 2, 100000);
         stopTime = System.nanoTime();