摘要: /* 二叉树 1、创建二叉树 2、先序遍历 3、中序遍历 4、后序遍历 5、二叉树的深度 6、二叉树的镜像 */ #include "stdafx.h" #include #include #include using namespace std; typedef struct BiNode //声明二叉树 { char data; struct BiNode *lchild, *r... 阅读全文
posted @ 2016-10-08 21:47 Love63 阅读(263) 评论(0) 推荐(0)