A data structure that involves: Nodes Links It is a Graph that is Connected without Cycles Structure Root node Children nodes of parent nodes Leaf nodes which have no children flowchart TD A[Root] --> B(Node) B --> C[Leaf] B --> D[Node] D --> E[Leaf] D --> F[Leaf] Properties Tree Height