fin de arbre suite

This commit is contained in:
2024-12-04 15:49:35 +01:00
parent 85103a2222
commit 731020a934
17 changed files with 417 additions and 0 deletions

View 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;
}
}