C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
|
Contains declations of tree types, operations and structure. More...
#include "common.h"
Go to the source code of this file.
Data Structures | |
struct | tree_node |
tree node More... | |
struct | tree |
tree struct defn More... | |
Typedefs | |
typedef struct tree_node | t_tree_node |
tree node More... | |
typedef struct tree | t_tree |
tree struct defn More... | |
Enumerations | |
enum | e_treetype { eBST , eAVL } |
Types of trees. More... | |
Functions | |
t_gen | create_tree (char *name, e_treetype, t_dparams *prm) |
tree interface API More... | |
Contains declations of tree types, operations and structure.
Definition in file tree.h.
typedef struct tree_node t_tree_node |
tree node
enum e_treetype |
t_gen create_tree | ( | char * | name, |
e_treetype | ttype, | ||
t_dparams * | prm | ||
) |