摘要: #include #include using namespace std; struct Node { Node * lchild; Node * rchild; char c; }; Node* build(string in ,string pos) { Node* t=NULL; if(in.size()>0) { t=new Node(); t... 阅读全文
posted @ 2016-12-13 01:42 KennyRom 阅读(295) 评论(0) 推荐(0) 编辑