How to transverse a Btree?
- by Phenom
I have a BST and I'm trying to figure out how transverse it so that the keys are displayed ascending order.
All I can figure out is that this can be done with a recursive function.
What's the pseudo-code to do it?