sdut 2137 数据结构实验之求二叉树后序遍历和层次遍历
生活随笔
收集整理的這篇文章主要介紹了
sdut 2137 数据结构实验之求二叉树后序遍历和层次遍历
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
數(shù)據(jù)結(jié)構(gòu)實驗之求二叉樹后序遍歷和層次遍歷
Time Limit:?1000MS?Memory Limit:?65536KB Submit?Statistic?DiscussProblem Description
?已知一棵二叉樹的前序遍歷和中序遍歷,求二叉樹的后序遍歷和層序遍歷。
Input
?輸入數(shù)據(jù)有多組,第一行是一個整數(shù)t (t<1000),代表有t組測試數(shù)據(jù)。每組包括兩個長度小于50 的字符串,第一個字符串表示二叉樹的先序遍歷序列,第二個字符串表示二叉樹的中序遍歷序列。
Output
每組第一行輸出二叉樹的后序遍歷序列,第二行輸出二叉樹的層次遍歷序列。
Example Input
2 abdegcf dbgeafc xnliu lnixuExample Output
dgebfca abcdefg linux xnuliHint
Author
#include <iostream> #include <string.h> #include <queue> #include <stack> #include <malloc.h> using namespace std; char pre[51],in[51]; typedef struct btree {char date;btree *lchild,*rchild; }btree; btree *root; btree *createbtree(char pre[],char in[],int n) {btree *b;for(int i=0;i<n;++i){if(in[i]==pre[0]){b=(btree*)malloc(sizeof(btree));b->date=pre[0];b->lchild=createbtree(pre+1,in,i);b->rchild=createbtree(pre+i+1,in+i+1,n-i-1);return b;}}return NULL; } void postbtree()//非遞歸 {stack<btree *>Stack;btree *p=root;do{while(p!=NULL){Stack.push(p);p=p->lchild;}bool flag=true;btree *r=NULL;while(!Stack.empty()&&flag){p=Stack.top();if(p->rchild==r){Stack.pop();cout<<p->date;r=p;}else{flag=false;p=p->rchild;}}}while(!Stack.empty());cout<<endl; } void levelorder() {btree *b=root;queue<btree*>Queue;Queue.push(b);while(!Queue.empty()){b=Queue.front();Queue.pop();//這個沒有返回值cout<<b->date;if(b->lchild!=NULL)Queue.push(b->lchild);if(b->rchild!=NULL)Queue.push(b->rchild);}cout<<endl; } int main() {int n;cin>>n;while(n--){cin>>pre>>in;root=(btree *)malloc(sizeof(btree));root=createbtree(pre,in,strlen(pre));postbtree();levelorder();}return 0; }后序的遍歷時對應(yīng)的遞歸代碼(main函數(shù)和postorder函數(shù): void postbtree(btree *root)//遞歸 {btree *b=root;if(b!=NULL){postbtree(b->lchild);postbtree(b->rchild);cout<<b->date;} } int main() {int n;cin>>n;while(n--){cin>>pre>>in;root=(btree *)malloc(sizeof(btree));root=createbtree(pre,in,strlen(pre));postbtree(root);cout<<endl;levelorder();}return 0; }總結(jié)
以上是生活随笔為你收集整理的sdut 2137 数据结构实验之求二叉树后序遍历和层次遍历的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: sdut 3341数据结构实验之二叉树二
- 下一篇: sdut 2128 树结构练习——排序二