instance variables assignment
package projects;
public class Node {//Node class
int data;
Node next;
Node leftNode;
Node rightNode;
}
public class Tree {//Tree class
if (node.data < root.data) {
focusNode = focusNode.leftNode; //what does this assignment mean //exactly
}
}
This is the code snippet I need help on, please help thanks in advance.