この方法がわかりません。
protected void inorder(TreeNode<E> root) {
if (root == null) return;
inorder(root.left);
System.out.print(root.element + " ");
inorder(root.right);
}
ツリーの最後のノードになり、current.left が nullにcurrent node
なると、何が起こったのでしょうか? current node
どこに戻る?そのノードはいつ印刷されますか?