Properly add Affichable interface.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 16 Feb 2018 09:19:20 +0000 (10:19 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 16 Feb 2018 09:19:20 +0000 (10:19 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP2/Cercle.java
TP2/Entiers.java [new file with mode: 0644]
TP2/Forme.java
TP2/Image.java
TP2/Liste.java [new file with mode: 0644]
TP2/Segment.java
TP2/Structure.java

index 62772da71506b8bba3f1a6423c4f5b405039405c..f595ffd1a9549c93dafa90d520d4bada0ac0bcfa 100644 (file)
@@ -14,4 +14,8 @@ class Cercle extends Forme {
         System.out.println(className + " " + super.getpOri().toString() + "->" + pOriTrans.toString() + " " + rayon);
     }
 
+    public void afficher() {
+        System.out.println(super.getpOri().toString() + " " + rayon);
+    }
+
 }
diff --git a/TP2/Entiers.java b/TP2/Entiers.java
new file mode 100644 (file)
index 0000000..b4cffb1
--- /dev/null
@@ -0,0 +1,107 @@
+
+class Entiers extends Structure {
+    private int int_array[];
+    private int array_size;
+    private int current_size;
+
+    public void setSize(int size) {
+        array_size = size;
+    }
+
+    public int getSize() {
+        return array_size;
+    }
+
+    public void setCurrentSize(int index) {
+        current_size = index;
+    }
+
+    public int getCurrentSize() {
+        return current_size;
+    }
+
+    Entiers(int size) {
+        int_array = new int[size];
+        setSize(size);
+        setCurrentSize(0);
+    }
+
+    public boolean inserer(int value) {
+        if (isFull()) {
+            System.out.println("Tableau plein");
+            return false;
+        }
+        if (isEmpty()) {
+            int_array[0] = value;
+            current_size++;
+            return true;
+        } else {
+            for (int i = 0; i < getCurrentSize(); i++) {
+                if (int_array[i] == value) {
+                    return true;
+                } else if (int_array[i] > value) {
+                    for (int j = getCurrentSize(); j > i; j--) {
+                        int_array[j] = int_array[j - 1];
+                    }
+                    int_array[i] = value;
+                    current_size++;
+                    return true;
+                }
+            }
+        }
+        /**
+         * The current value to add is > to all elements in the tab.
+         * So add it at the end.
+         */
+        int_array[getCurrentSize()] = value;
+        current_size++;
+        return true;
+    }
+
+    private int binarySearch(int first, int last, int value) {
+        if (last < first)
+            //FIXME: should not return an integer 
+            return -1;
+        int middle = (first + last) / 2;
+        if (value == int_array[middle])
+            return middle;
+        else if (value > int_array[middle])
+            return binarySearch((middle + 1), last, value);
+        return binarySearch(first, (middle -1), value);
+    }
+
+    public boolean supprimer(int value) {
+        if (isEmpty()) {
+            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
+                for (int j = i; j < getCurrentSize() - 1; j++) {
+                    int_array[j] = int_array[j + 1];
+                }
+                current_size--;
+                return true;
+            }
+        }
+        return true;
+    }
+
+    private boolean isFull() {
+        return (getCurrentSize() >= getSize());
+    }
+
+    private boolean isEmpty() {
+        return (getCurrentSize() == 0);
+    }
+
+    public void afficher() {
+        System.out.println("---- entiers ----");
+        for (int i = 0; i < getCurrentSize(); i++) {
+            System.out.println("element " + i + " : " + int_array[i]);
+        }
+    }
+
+}
index 0e08ddf730273f68c5411c8bfe43fefccf39cd62..c90aa31275f2e37ba48b84f01c205187c92489f1 100644 (file)
@@ -1,5 +1,5 @@
 
-public abstract class Forme {
+public abstract class Forme implements Affichable {
     private Point pOri;
 
     public abstract void dessiner(Piletransformations pile);
index 6ec38bfd9331fd72d073f5e474f72fd99af518a3..b2efe6e06bc603dc4f7a1d78c8838b109880186d 100644 (file)
@@ -46,4 +46,10 @@ class Image extends Forme {
         return rtVal;
     }
 
+    public void afficher() {
+        for (int i = 0; i < formeNumber; i++) {
+            formeCollection[i].afficher();
+        }
+    }
+
 }
diff --git a/TP2/Liste.java b/TP2/Liste.java
new file mode 100644 (file)
index 0000000..b31d081
--- /dev/null
@@ -0,0 +1,138 @@
+
+
+public class Liste extends Structure {
+
+    private class IntNode {
+        private int data;
+        private IntNode next;
+
+        IntNode(int value) {
+            setData(value);
+            setNext(null);
+        }
+
+        IntNode(int value, IntNode nextNode) {
+            setData(value);
+            setNext(nextNode);
+        }
+
+        public int getData() {
+            return data;
+        }
+
+        public void setData(int value) {
+            data = value;
+        }
+
+        public IntNode getNext() {
+            return next;
+        }
+
+        public void setNext(IntNode nextNode) {
+            next = nextNode;
+        }
+
+    }
+
+    private IntNode headNode;
+    private int list_counter;
+
+    Liste() {
+        setHeadNode(null);
+        setSize(0);
+    }
+
+    private boolean isEmpty()
+    {
+        return getHeadNode() == null;
+    }
+
+    public int getSize() {
+        return list_counter;
+    }
+
+    public void setSize(int size) {
+        list_counter = size;
+    }
+
+    public void setHeadNode(IntNode node) {
+        headNode = node;
+    }
+
+    public IntNode getHeadNode() {
+        return headNode;
+    }
+
+    public boolean inserer(int value) {
+        boolean found = false;
+        if (isEmpty()) {
+            headNode = new IntNode(value);
+            list_counter++;
+            return true;
+        } else if (value == headNode.getData()) {
+            found = true;
+            return true;
+        } else {
+            IntNode nodeCursorNext = headNode.getNext();
+            while (nodeCursorNext != null) {
+                if (value == nodeCursorNext.getData()) {
+                    found = true;
+                    break;
+                } else {
+                    nodeCursorNext = nodeCursorNext.getNext();
+                }
+            }
+            if (!found) {
+                headNode = new IntNode(value, headNode);
+                list_counter++;
+            }
+            // Insertion in a linked list can't fail
+            return true;
+        }
+    }
+
+    public boolean supprimer(int value) {
+        boolean deleted = false;
+        if (isEmpty()) {
+            return deleted;
+        } else if (value == headNode.getData()) {
+            headNode = headNode.getNext();
+            deleted = true;
+            list_counter--;
+        } else {
+            IntNode nodeCursor = headNode;
+            IntNode nodeCursorNext = headNode.getNext();
+            while (nodeCursorNext != null) {
+                if (value == nodeCursorNext.getData()) {
+                    nodeCursor.setNext(nodeCursorNext.getNext());
+                    deleted = true;
+                    list_counter--;
+                    break;
+                } else {
+                    nodeCursor = nodeCursorNext;
+                    nodeCursorNext = nodeCursorNext.getNext();
+                }
+            }
+        }
+        return deleted;
+    }
+
+    public void afficher() {
+        System.out.println("---- liste ----");
+        if (isEmpty()) {
+            System.out.println("Liste vide");
+        } else if (headNode.getNext() == null) {
+            System.out.println("element 0 : " + headNode.getData());
+        } else {
+            IntNode nodeCursor = headNode;
+            int i = 0;
+            while (nodeCursor.getNext() != null) {
+                System.out.println("element " + i + " : " + nodeCursor.getData());
+                nodeCursor = nodeCursor.getNext();
+                i++;
+            }
+            System.out.println("element " + i++ + " : " + nodeCursor.getData());
+        }
+    }
+
+}
index 5fd0d735500ca44e6500358aafa525ef0ed85ad4..48809c599f7334d49f2cd04c4a761a5e2f2e54ec 100644 (file)
@@ -26,4 +26,8 @@ class Segment extends Forme {
         pDest = pDest.additionner(p);
     }
 
+    public void afficher() {
+        System.out.println(super.getpOri().toString() + " " + pDest.toString());
+    }
+
 }
index 170928f618016918a427237b5c76285e4b5676a9..bfad43ae830ed1622645824245eefcefdc8cdd91 100644 (file)
@@ -1,5 +1,5 @@
 
-public abstract class Structure {
+public abstract class Structure implements Affichable {
 
     public abstract boolean inserer(int value);
     public abstract boolean supprimer(int value);