按照前序遍历和中序遍历构建二叉树

来源:互联网 发布:ps制作淘宝模板 编辑:程序博客网 时间:2024/06/05 18:48

转载自:http://blog.csdn.net/sbitswc/article/details/26433051

Given preorder and inorder traversal of a tree, construct the binary tree.

Note:
You may assume that duplicates do not exist in the tree.

There is an example.
        _______7______       /              \    __10__          ___2   /      \        /   4       3      _8            \    /             1  11
The preorder and inorder traversals for the binary tree above is:
preorder = {7,10,4,3,1,2,8,11}inorder = {4,10,3,1,7,11,8,2}

The first node in preorder alwasy the root of the tree. We can break the tree like:
1st round:
preorder:  {7}, {10,4,3,1}, {2,8,11}
inorder:     {4,10,3,1}, {7}, {11, 8,2}

        _______7______       /              \    {4,10,3,1}       {11,8,2}
Since we alreay find that {7} will be the root, and in "inorder" sert, all the data in the left of {7} will construct the left sub-tree. And the right part will construct a right sub-tree. We can the left and right part agin based on the preorder.
2nd round
left part                                                                            right part
preorder: {10}, {4}, {3,1}                                              {2}, {8,11}
inorder:  {4}, {10}, {3,1}                                                {11,8}, {2}


        _______7______       /              \    __10__          ___2   /      \        /   4      {3,1}   {11,8}
see that, {10} will be the root of left-sub-tree and {2} will be the root of right-sub-tree.

Same way to split {3,1} and {11,8}, yo will get the complete tree now.

        _______7______       /              \    __10__          ___2   /      \        /   4       3      _8            \    /             1  11
So, simulate this process from bottom to top with recursion as following code.
c++

[cpp] view plain copy 在CODE上查看代码片派生到我的代码片
  1. TreeNode *BuildTreePI(  
  2.     vector<int> &preorder,  
  3.     vector<int> &inorder,  
  4.     int p_s, int p_e,  
  5.     int i_s, int i_e){  
  6.     if(p_s > p_e) return NULL;  
  7.     int pivot = preorder[p_s];  
  8.     int i = i_s;  
  9.     for(;i<i_e;i++){  
  10.         if(inorder[i] == pivot)  
  11.             break;  
  12.     }  
  13.     int length1 = i-i_s-1;  
  14.     int length2 = i_e-i-1;  
  15.     TreeNode* node = new TreeNode(pivot);  
  16.     node->left = BuildTreePI(preorder,inorder,p_s+1,length1+p_s+1,i_s, i-1);  
  17.     node->right = BuildTreePI(preorder, inorder, p_e-length2, p_e, i+1, i_e);  
  18.     return node;  
  19. }  
  20. TreeNode *buildTree(vector<int> &preorder, vector<int> &inorder) {  
  21.     return BuildTreePI(preorder,inorder,0,preorder.size()-1,0,inorder.size()-1);  
  22. }  

java

[java] view plain copy 在CODE上查看代码片派生到我的代码片
  1. public TreeNode buildTree(int[] preorder, int[] inorder) {  
  2.         return buildPI(preorder, inorder, 0, preorder.length-10, inorder.length-1);  
  3.     }  
  4.     public TreeNode buildPI(int[] preorder, int[] inorder, int p_s, int p_e, int i_s, int i_e){  
  5.         if(p_s>p_e)  
  6.             return null;  
  7.         int pivot = preorder[p_s];  
  8.         int i = i_s;  
  9.         for(;i<i_e;i++){  
  10.             if(inorder[i]==pivot)  
  11.                 break;  
  12.         }  
  13.         TreeNode node = new TreeNode(pivot);  
  14.         int lenLeft = i-i_s;  
  15.         node.left = buildPI(preorder, inorder, p_s+1, p_s+lenLeft, i_s, i-1);  
  16.         node.right = buildPI(preorder, inorder, p_s+lenLeft+1, p_e, i+1, i_e);  
  17.         return node;  
  18.     } 

0 0
原创粉丝点击