X-Git-Url: https://git.piment-noir.org/?p=TP_POO.git;a=blobdiff_plain;f=Listes%2FListe.java;fp=Listes%2FListe.java;h=d290a9cc4154716b753a2287b3991a4561cdf198;hp=0000000000000000000000000000000000000000;hb=357ec4fe0356d5eb126ea539202fb16df568fb35;hpb=8122cb54b90c701a2e1ebd3f59919fa1a6ed4579 diff --git a/Listes/Liste.java b/Listes/Liste.java new file mode 100644 index 0000000..d290a9c --- /dev/null +++ b/Listes/Liste.java @@ -0,0 +1,23 @@ + +class Liste { + private int data; + private int list_counter; + private Liste next; + + Liste() { + + } + + private int getSize() { + return list_counter; + } + + public boolean inserer(int value) { + + } + + public boolean supprimer(int value) { + + } + +}