summaryrefslogtreecommitdiff
path: root/0100/main.c
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-09-10 11:46:15 +0800
committerMistivia <i@mistivia.com>2025-09-10 11:46:15 +0800
commit16f799a0e089b1b0301b2ee6fc3b3d2c210d1d4b (patch)
tree2679b14875628a14028170e748b0d5f55df5d6f3 /0100/main.c
parented193dc87b3d1f59b7789acd72f2f4c216d57bcf (diff)
fix
Diffstat (limited to '0100/main.c')
-rw-r--r--0100/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/0100/main.c b/0100/main.c
index 22f36b0..a27b167 100644
--- a/0100/main.c
+++ b/0100/main.c
@@ -1,3 +1,12 @@
+#include <stdbool.h>
+#include <stdlib.h>
+
+struct TreeNode {
+ int val;
+ struct TreeNode *left;
+ struct TreeNode *right;
+};
+
/**
* Definition for a binary tree node.
* struct TreeNode {