摘要: 待完成的任务:1.用无脑的方法刷完题2.想简单方法3.总结:大数运算二叉树的遍历同类题型:1078笨办法直接建树:#include #include char str[105];struct Node { Node *lChild; Node *rChild; char d;} Tree[105];int pos;int cur;Node* BuildTree(int e) { if (str[cur] == '#' || cur >= e) return NULL; Tree[pos].lChild = Tree[pos].rChild = NULL; N... 阅读全文