Today I learned about...
cs
Back to all tags
cs24.06.2021
Post-Order Tree Traversal
Learned about another way to traverse a tree! It’s called Post-Order.
Essentially:
- Go left as far as you can
- Go right as far as you can
- Visit Node
Learned about another way to traverse a tree! It’s called Post-Order.
Essentially: