@@ -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;
}
The note is not visible to the blocked user.