常规做法,先通过先序遍历和中序遍历构造二叉树,再输出后序遍历序列

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. struct node
  5. {
  6. char data;
  7. struct node *lchild;
  8. struct node *rchild;
  9. };
  10. node* create(string pre,string mid)
  11. {
  12. node *root=NULL;
  13. int len,index;
  14. string s1,s2;
  15. string m1,m2;
  16. if(pre.length()>0)
  17. {
  18. root=(node*)malloc(sizeof(node));
  19. root->lchild=NULL;
  20. root->rchild=NULL;
  21. len=pre.length();
  22. root->data=pre[0];
  23. index=mid.find(pre[0]);
  24. m1=mid.substr(0,index);
  25. m2=mid.substr(index+1,pre.length()-index-1);
  26. s1=pre.substr(1,index);
  27. s2=pre.substr(index+1,pre.length()-index-1);
  28. root->lchild=create(s1,m1);
  29. root->rchild=create(s2,m2);
  30. }
  31. return root;
  32. }
  33. void lasvis(node *t)
  34. {
  35. if(t==NULL)
  36. {
  37. return;
  38. }
  39. lasvis(t->lchild);
  40. lasvis(t->rchild);
  41. cout<<t->data;
  42. }
  43. int main()
  44. {
  45. string pre,mid;
  46. while(cin>>pre>>mid)
  47. {
  48. node *t;
  49. t=create(pre,mid);
  50. lasvis(t);
  51. cout<<endl;
  52. }
  53. return 0;
  54. }
点赞(0)
 

7.3 分

2 人评分

 

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论