摘要: #include <stdio.h> #include <stdlib.h> //exit #include<malloc.h> //定义二叉链表结点结构 typedef struct node{ int data; struct node *lchild, *rchild; }BiTree; // 阅读全文
posted @ 2022-12-05 10:35 Little_Monster-lhq 阅读(109) 评论(0) 推荐(0) 编辑