Introduction
- Tree is a frequently-used data structure to simulate a hierarchical tree structure
- Each node of the tree will have a root value and a list of references to other nodes which are called child nodes
- Binary Tree is one of the most typical tree structure
Contents
Traverse a Tree
Solve Tree Problem Recursively
Basic Problems