add my unfinished cbase

This commit is contained in:
joachimschmidt557 2020-06-09 17:51:23 +02:00
parent 501065651d
commit bb63a9dd3c
16 changed files with 277 additions and 0 deletions

View 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