zoukankan      html  css  js  c++  java
  • Construct Binary Tree from Preorder and Inorder Traversal

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

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

    思路:由前序遍历数组和中序遍历数组构建二叉树,此题与Construct Binary Tree from Inorder and Postorder Traversal很相似。

    1.从前序遍历找树的根结点,即第一个元素;

    2.从中序遍历中查找根结点的位置,并记录下位置,计算出此时的长度len;

    3.递归调用函数找出左右子树的根结点;

    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class Solution {
    public:
        void buildBST(TreeNode *&root,vector<int> &preorder,int preBegin,int preEnd,vector<int> &inorder,int inBegin,int inEnd)
        {
            if(preBegin>preEnd||inBegin>inEnd)
                return;
            int pRoot=preorder[preBegin];
            root=new TreeNode(pRoot);
            int index=0;
            for(int i=inBegin;i<=inEnd;i++)
            {
                if(inorder[i]==pRoot)
                {
                    index=i;
                    break;
                }
            }
            int len=index-inBegin;
            buildBST(root->left,preorder,preBegin+1,preBegin+len,inorder,inBegin,index-1);
            buildBST(root->right,preorder,preBegin+len+1,preEnd,inorder,index+1,inEnd);
        }
        TreeNode *buildTree(vector<int> &preorder, vector<int> &inorder) {
            if(preorder.size()==0||inorder.size()==0)
                return NULL;
            TreeNode *root=NULL;
            int preBegin=0,preEnd=preorder.size()-1;
            int inBegin=0,inEnd=inorder.size()-1;
            buildBST(root,preorder,preBegin,preEnd,inorder,inBegin,inEnd);
            return root;
        }
    };
  • 相关阅读:
    Linux ls -l内容详解
    simple_strtoul
    proc_create的使用方法
    Ubuntu Linux 安装 .7z 解压和压缩文件
    3518调试2
    MTK camera 闪光灯Flashlight驱动调试流程
    samba访问其他服务器文件权限设置
    excel中单列相乘取整
    git fetch
    中文123456789
  • 原文地址:https://www.cnblogs.com/awy-blog/p/3695792.html
Copyright © 2011-2022 走看看