12 lines
198 B
Java
12 lines
198 B
Java
public class Cellule<E> {
|
|
|
|
public E element;
|
|
public Cellule<E> suivante;
|
|
|
|
public Cellule(E elm, Cellule<E> next) {
|
|
this.element = elm;
|
|
this.suivante = next;
|
|
}
|
|
|
|
}
|