add my unfinished cbase
This commit is contained in:
parent
501065651d
commit
bb63a9dd3c
16 changed files with 277 additions and 0 deletions
13
cbase/data/trees/binarytree.h
Normal file
13
cbase/data/trees/binarytree.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef BINARYTREE_H
|
||||
#define BINARYTREE_H
|
||||
|
||||
typedef struct BinaryTreeNode {
|
||||
void* data;
|
||||
struct BinaryTreeNode* left;
|
||||
struct BinaryTreeNode* right;
|
||||
} BinaryTreeNode;
|
||||
|
||||
BinaryTreeNode*
|
||||
new_binarytree();
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue