2015年5月10日

树和二叉树

摘要: //BiTree.hstruct BiTNode //采用二叉链表存储结构{ char data; struct BiTNode* lchild; struct BiTNode* rchild;}BiTNode;struct BiTNode* CreateBiTree(); int Destr... 阅读全文

posted @ 2015-05-10 12:03 moffis 阅读(182) 评论(0) 推荐(0)

导航