This commit is contained in:
2026-04-20 20:09:16 +02:00
commit a97f290271
22 changed files with 451 additions and 0 deletions
@@ -0,0 +1,9 @@
#include "basic_tree.h"
struct node *insert(struct node *root, int value);
void delete_leaf(struct node *root, int value);
struct node *delete_node(struct node *root, int value);
void pretty_print(struct node *root);