Neocortex 🧠

Search

Search IconIcon to open search

Pre-Order Tree Traversal

Last updated Dec 14, 2021 Edit Source

This is a method of depth first Tree Traversal in which we visit a node first and then visit its children, recursively. Thanks to its recursive nature, this allows for an easy-to-read, intuitive depth first traversal algorithm.


Interactive Graph