摘要: 简单的二叉树的创建(前序输入)&前序遍历&中序遍历&后序遍历#include <stdio.h> #include <stdlib.h> #define MAX 1024 typedef struct bitnode { int data; struct bitnode *lchild; struc 阅读全文
posted @ 2019-11-21 23:13 -Corlin- 阅读(368) 评论(0) 推荐(0) 编辑