diff --git a/c/binary-tree.c b/c/binary-tree.c index eb363ec..d9228fc 100644 --- a/c/binary-tree.c +++ b/c/binary-tree.c @@ -4,6 +4,11 @@ search algorithms but uses built in javascript data structures to jump a bunch of steps, here I write everything from scratch */ +/* +next challenge to is write a function to read in a json file and +parse it as a tree??? + */ + #include #include @@ -32,6 +37,10 @@ Node* new_node(int value) { return (n); } +void json_file_to_tree(char* filepath) { + // TODO!!!! +} + void push(Stack* stack, Node* node) { if (stack->len == 0) { stack->head = node;