菜鸟的博客

纵有疾风起,人生不言弃。

导航

2023年11月16日 #

二叉树

摘要: #include <stdio.h> #include <stdlib.h> // 二叉树节点的定义 typedef struct TreeNode { int data; struct TreeNode* left; struct TreeNode* right; } TreeNode; // 创 阅读全文

posted @ 2023-11-16 22:36 hhmzd233 阅读(10) 评论(0) 推荐(0) 编辑