[Leetcode] construct-binary-tree-from-preorder-and-inorder-, preorderinorder

Source: Internet
Author: User

[Leetcode] construct-binary-tree-from-preorder-and-inorder-, preorderinorder
Description

 

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

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

/** * 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 ConstructTree(TreeNode *&tree, vector<int> &preorder, int prebegin, int preend, vector<int> &inorder, int inbegin, int inend)    {        if(prebegin > preend || inbegin > inend)            return;        int i;        int mid = preorder[prebegin];        for(i = inbegin; i <= inend; i++)        {            if(inorder[i] == mid)                break;        }        tree = new TreeNode(mid);        ConstructTree(tree->left, preorder, prebegin+1, prebegin+i-inbegin, inorder, inbegin, i-1);        ConstructTree(tree->right, preorder, prebegin+i+1-inbegin, preend, inorder, i+1, inend);    }            TreeNode *buildTree(vector<int> &preorder, vector<int> &inorder)     {        if(preorder.size() == 0 || inorder.size() == 0)            return NULL;        TreeNode *tree = NULL;                ConstructTree(tree, preorder, 0, preorder.size()-1, inorder, 0, inorder.size()-1);                return tree;    }};

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.