摘要: #include #include//中序建立二叉树 typedef struct node { struct node *left,*right; int data; int rTag,lTag; }BNode; BNode* pre=NULL;//pre总是指向其前一个结点 BNode* CreateBTree() { int data, front=1, ... 阅读全文
posted @ 2019-05-19 21:48 AQhhhhh 阅读(649) 评论(0) 推荐(0) 编辑