fin de arbre suite
This commit is contained in:
11
DEV3.2/arbre_suite/Authentification/auth_sans_API/Node.java
Normal file
11
DEV3.2/arbre_suite/Authentification/auth_sans_API/Node.java
Normal file
@@ -0,0 +1,11 @@
|
||||
// Classe interne pour représenter un nœud de l'arbre
|
||||
public class Node {
|
||||
String username;
|
||||
String password;
|
||||
Node left, right;
|
||||
|
||||
Node(String username, String password) {
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user