摘要: /* 先序创建一棵任意二叉树 *//* 注意:输入数据的顺序很有特点,本题输入的顺序要求为,先是根节点,再是左子树,再是右子树 */ #include <iostream>#include <malloc.h>using namespace std; typedef int ElementType; 阅读全文
posted @ 2019-11-08 15:58 失忆_诗意 阅读(253) 评论(0) 推荐(0) 编辑