Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
Node, the basic data structure of the tree. More...
Data Fields | |
int | data |
stores the number | |
struct Node * | llink |
link to left child | |
struct Node * | rlink |
link to right child | |
struct Node * | next |
Node, the basic data structure of the tree.