fin arbre
This commit is contained in:
9
DEV3.2/Files/chaine/Node.java
Normal file
9
DEV3.2/Files/chaine/Node.java
Normal file
@@ -0,0 +1,9 @@
|
||||
// Classe interne pour représenter un nœud
|
||||
public class Node<E> {
|
||||
E element;
|
||||
Node<E> next;
|
||||
|
||||
Node(E element) {
|
||||
this.element = element;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user