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 | |
char * | word |
the word (value) of the node | |
uint64_t | frequency |
number of occurrences of the word | |
struct Node * | left |
pointer to the left child node | |
struct Node * | right |
pointer to the right child node | |
struct Node * | next |
Node, the basic data structure of the tree.
for assert
for type checks for uint64_t based types, int64_t based types for boolean data type for IO operations for memory allocation for string operations
structure defining a node in the binary tree