| Representation of Binary Tree : | |||||
The structure of each node of a binary tree contains one data field and two pointers, each for the right & left child. Each child being a node has also the same structure. The structure of a node is shown below.
The structure defining a node of binary tree in C is as follows. |
|||||
| Prev | |||||