This commit is contained in:
ovosimpatico
2023-12-06 17:06:42 -03:00
parent 3cfc0b3215
commit 0791ed0e7b
7 changed files with 7031 additions and 0 deletions

11
Node.java Normal file
View File

@@ -0,0 +1,11 @@
public class Node {
protected ProgramaNetflix programa;
protected Node left, right;
protected int height;
public Node(ProgramaNetflix programa) {
this.programa = programa;
this.left = this.right = null;
this.height = 1;
}
}