A tree has its records (nodes) arranged in a
hierarchical way.
There is one root called a root node at the 'top' of the tree.
Connections between nodes are called branches.
A node with no branches is called a leaf node.
Example: 'Britain' is the root node.
'Avon', 'Devon' etc are
leaf nodes.
|

|
This tree is not a binary tree. A binary tree is a tree where each node has at most 2 branches.
The parent node is the node
immediately above a node. A node only has one parent node, but a node
may have 0,1 or 2 child nodes.
|