Description
Little Valentine liked playing with binary trees very much. Her favorite game was constructing randomly looking binary trees with capital letters in the nodes.D / \ / \ B E / \ \ / \ \ A C G / / F
Input
The input will contain one or more test cases.Output
For each test case, recover Valentine's binary tree and print one line containing the tree's postorder traversal (left subtree, right subtree, root).Sample Input
DBACEGF ABCDEFG BCAD CBAD
Sample Output
ACBFGED CDAB
題意:已知前序和中序,求後序
參考代碼:
//由前序和中序求後序 #include#include using namespace std; typedef struct node{ char data; node *left,*right; }*tree; char preorder[100],inorder[100]; /* 由前序、中序構造樹 * i: 子樹的前序序列字符串的首字符在preorder[]中的下標 * j: 子樹的中序序列字符串的首字符在inorder[]中的下標 * len: 子樹的字符串序列的長度 */ void CreatTree(tree &t,int i,int j,int len){ if (len<=0) return; if (t==NULL){ t=new node; t->left=t->right=NULL; } t->data=preorder[i]; int m=strchr(inorder,preorder[i])-inorder; //preorder[i]在inorder[]第幾個字符 CreatTree(t->left,i+1,j,m-j); CreatTree(t->right,i+(m-j)+1,m+1,len-1-(m-j)); } /*後序遍歷*/ void PostOrder(tree t){ if(t!=NULL){ PostOrder(t->left); //訪問左子結點 PostOrder(t->right); //訪問右子結點 cout<<(t->data); //訪問根節點 } } int main(){ while (cin>>preorder>>inorder){ tree t=NULL; int len=strlen(preorder); CreatTree(t,0,0,len); PostOrder(t); cout<