1 # root
2 # root.left
3 # root.right
4 # root.left.left
5 # root.left.right
0 # root.left.left.left does not exist (4の左子は存在しない)
0 # root.left.left.right does not exist (4の右子は存在しない)
0 # root.left.right.left does not exist (5の左子は存在しない)
0 # root.left.right.right does not exist (5の右子は存在しない)
6 # root.right.left
7 # root.right.right
0 # root.right.left.left does not exist (6の左子は存在しない)
0 # root.right.left.right does not exist (6の右子は存在しない)
8 # root.right.right.left
9 # root.right.right.right
0 # root.right.right.left.left does not exist (8の左子は存在しない)
0 # root.right.right.left.right does not exist (8の右子は存在しない)
0 # root.right.right.right.left does not exist (9の左子は存在しない)
0 # root.right.right.right.right does not exist (9の右子は存在しない)