摘要: #include typedef struct BTNode { char data; struct BTNode * lchild; //p是指针L是左,child是孩子 struct BTNode * rchild; }BTNode,*BiTree; struct BTNode * CreateBTree(); void PreTraverseBTree(str... 阅读全文
posted @ 2019-08-09 19:45 小孢子 阅读(3471) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include struct BiTNode { int data; struct TreeNode *lchild,*rchild; }BiTNode, *BiTree; //输出二叉树的所有结点个数 int Put(BiTree b) { if(b==NULL) ... 阅读全文
posted @ 2019-08-09 18:33 小孢子 阅读(1517) 评论(0) 推荐(0) 编辑