Neocortex 🧠

Search

Search IconIcon to open search

Post-Order Tree Traversal

Last updated Dec 14, 2021 Edit Source

Another depth-first Tree Traversal algorithm commonly used is post-order traversal. It differs from Pre-Order Tree Traversal in the way that it first visits the children of a node before visiting the node itself.


Interactive Graph