01 2016 档案

摘要:#include#include#define ElemType inttypedef struct BiTNode{ ElemType data; struct BiTNode *lchild, *rchild;}BiTNode,*BiTree;int CreateBiTree(BiT... 阅读全文
posted @ 2016-01-26 22:16 第九剑 阅读(254) 评论(0) 推荐(0)
摘要:#include#include#include#include#define ElemType charusing namespace std;typedef struct BiTNode{ ElemType data; struct BiTNode *lchild,*rchild;}... 阅读全文
posted @ 2016-01-26 22:15 第九剑 阅读(205) 评论(0) 推荐(0)