Miscellany
public text v1 · immutable A
/ \
B C
/ \
D E
/ \
F G
pre-order: A B D E F G C
in-order: D B F E G A C
-------------------
post-order: ???? A
/ \
B C
/ \
D E
/ \
F G
pre-order: A B D E F G C
in-order: D B F E G A C
-------------------
post-order: ????