summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/binary_tree_dynamic/binary_tree.h
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:19:00 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-10-11 22:19:00 +0200
commit73c2b00a10c5786ddeeacc915e233fd4df1c9321 (patch)
treee299ea4e8ac161b2b21170172ff8f182c1c3fe1a /rushs/tinyprintf/binary_tree_dynamic/binary_tree.h
parentc9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (diff)
fix: evalexpr & tinyprintf contenaient toute la piscine
Diffstat (limited to 'rushs/tinyprintf/binary_tree_dynamic/binary_tree.h')
-rw-r--r--rushs/tinyprintf/binary_tree_dynamic/binary_tree.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/rushs/tinyprintf/binary_tree_dynamic/binary_tree.h b/rushs/tinyprintf/binary_tree_dynamic/binary_tree.h
deleted file mode 100644
index a08e4ef..0000000
--- a/rushs/tinyprintf/binary_tree_dynamic/binary_tree.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef BINARY_TREE_H
-#define BINARY_TREE_H
-
-struct binary_tree
-{
- int data;
- struct binary_tree *left;
- struct binary_tree *right;
-};
-
-int size(const struct binary_tree *tree);
-int height(const struct binary_tree *tree);
-void dfs_print_prefix(const struct binary_tree *tree);
-void dfs_print_infix(const struct binary_tree *tree);
-void dfs_print_postfix(const struct binary_tree *tree);
-int is_perfect(const struct binary_tree *tree);
-int is_complete(const struct binary_tree *tree);
-int is_degenerate(const struct binary_tree *tree);
-int is_full(const struct binary_tree *tree);
-int is_bst(const struct binary_tree *tree);
-
-#endif /* !BINARY_TREE_H */