二叉树的构建及后序遍历
摘要:#include"stdio.h" #include"stdlib.h" #include using namespace std; typedef char ElemType; typedef struct BiTNode{ ElemType data; struct BiTNode *lchild, *rchild; }BiTNode, *BiTree; void Cr...
阅读全文
posted @ 2017-12-06 10:14
浙公网安备 33010602011771号