Neocortex 🧠

Search

Search IconIcon to open search

Tree Traversal

Last updated Dec 14, 2021 Edit Source

Tree Traversal is the process of visiting/processing every node in a tree using a consistent method. Every traversal algorithm, has a time complexity in Big-Oh Notation $O(n)$ where n is the number of nodes in the tree. There are two types of three traversal methods:


Interactive Graph