首页 > 代码库 > Uva10701 Pre, in and post
Uva10701 Pre, in and post
和Tree Recover基本类似,就改了一点而已
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 string pr,in; 6 string postorder; 7 void process(string preord,string inord); 8 int main() 9 {10 int line,order;11 //freopen("D:\\acm.txt","r",stdin);12 cin>>line;13 while(line--){14 cin>>order;15 cin>>pr>>in;16 postorder.clear();17 process(pr,in);18 cout<<postorder<<endl;19 }20 return 0;21 }22 void process(string preord,string inord){23 int Size = preord.size();24 if(Size>0){25 int p = inord.find(preord[0]);26 process(preord.substr(1,p),inord.substr(0,p));//左树27 process(preord.substr(p + 1,Size - (p + 1)),inord.substr(p + 1,Size - (p + 1)));//右树28 postorder.push_back(preord[0]);29 }30 }
Uva10701 Pre, in and post
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。