Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
Node Struct Reference

Node, the basic data structure of the tree. More...

Collaboration diagram for Node:
[legend]

Data Fields

int data
 stores the number
 
struct Nodellink
 link to left child
 
struct Noderlink
 link to right child
 
char * word
 the word (value) of the node
 
uint64_t frequency
 number of occurrences of the word
 
struct Nodeleft
 pointer to the left child node
 
struct Noderight
 pointer to the right child node
 
struct Nodenext
 

Detailed Description

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


The documentation for this struct was generated from the following files: