zoukankan      html  css  js  c++  java
  • LeetCode 105. 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.

    For example, given

    preorder = [3,9,20,15,7]
    inorder = [9,3,15,20,7]

    Return the following binary tree:

        3
       / 
      9  20
        /  
       15   7


    已知二叉树的前序遍历这中序遍历,求二叉树,这个其实挺简单的,在前序遍历中取第一个元素,然后在中序遍历找到相应的元素,左边的为左子树,右边的为右子树,根据长度在前序遍历中找到相应左子树和右子树的前序遍历。然后就可以递归了。

    class Solution {
    public:
        TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
            
            vector<int> leftpre;
            vector<int> leftino;
            vector<int> rightpre;
            vector<int> rightino;
            
            if(preorder.empty()||inorder.empty())
                return NULL;
            int root = preorder[0]; int left=0;int right=0;int tag=0;
            for(int i=0;i<inorder.size();i++)
            {
                if(inorder[i]==root)
                {
                    tag=1;
                }
                else if(tag==0)
                {left++;leftino.push_back(inorder[i]);}
                else
                {right++;rightino.push_back(inorder[i]);}
            }
            for(int i=1;i<left+1;i++)
            {
                leftpre.push_back(preorder[i]);
            }
            for(int i=left+1;i<preorder.size();i++)
            {
                rightpre.push_back(preorder[i]);
            }
            
            TreeNode* tree = new TreeNode(root);
           
            tree->left = buildTree(leftpre,leftino);
            tree->right = buildTree(rightpre,rightino);
            
            return tree;
            
        }
    };
  • 相关阅读:
    魔术方法___toString()
    魔术方法__set()
    魔术方法__get()
    php面向对象之final关键字用法及实例
    php面向对象之什么是抽象类?及抽象类的作用
    php面向对象之对象克隆方法
    php面向对象之对象比较用法详解
    php面向对象之instanceof关键字的用法
    php表单怎么提交到数据库?
    php表单的验证详解
  • 原文地址:https://www.cnblogs.com/dacc123/p/9215539.html
Copyright © 2011-2022 走看看