摘要: //二叉树的层次遍历和其深度#include #include //define _OJ_#define maxsize 100typedef struct tree1{ char data; struct tree1 *lchild; struct tree1 *rchild;} tree1, *... 阅读全文
posted @ 2015-11-16 14:58 别笑 阅读(503) 评论(0) 推荐(0) 编辑