我不明白这种方法。
protected void inorder(TreeNode<E> root) {
if (root == null) return;
inorder(root.left);
System.out.print(root.element + " ");
inorder(root.right);
}
当current node
到达树中的最后一个节点并且 current.left 变为空时,然后发生了什么? current node
返回哪里?该节点何时打印?