A data structure that involves:

  • Nodes
  • Links

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]