d290a9cc4154716b753a2287b3991a4561cdf198
[TP_POO.git] / Listes / Liste.java
1
2 class Liste {
3 private int data;
4 private int list_counter;
5 private Liste next;
6
7 Liste() {
8
9 }
10
11 private int getSize() {
12 return list_counter;
13 }
14
15 public boolean inserer(int value) {
16
17 }
18
19 public boolean supprimer(int value) {
20
21 }
22
23 }