12 lines
269 B
Java
12 lines
269 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|