diff options
Diffstat (limited to 'src/1-1-binary-search-tree.c')
| -rw-r--r-- | src/1-1-binary-search-tree.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/1-1-binary-search-tree.c b/src/1-1-binary-search-tree.c index cb5efc1..b6ff99e 100644 --- a/src/1-1-binary-search-tree.c +++ b/src/1-1-binary-search-tree.c @@ -4,6 +4,8 @@ #include <vectorlib.c> #include <time.h> +#define PROJECT_NAME "algorithms-binary search tree" + typedef struct TREE{ BS_Node *root; } TREE; @@ -30,4 +32,4 @@ int main(int argc, char **argv){ /* Challanges * * balance the tree - */
\ No newline at end of file + */ |
