码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode - Construct Binary Tree from Preorder and Inorder Traversal

时间:2014-10-06 14:46:30      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   for   sp   art   c   on   

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) {}
 * };
 */
struct TreeNode
{
	int val;
	TreeNode *left;
	TreeNode *right;
	TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
    TreeNode *buildTree(std::vector<int> &preorder, std::vector<int> &inorder) {
		return buildBinTree(preorder,0,preorder.size()-1,inorder,0,inorder.size()-1);
    }
private:
	TreeNode *buildBinTree(std::vector<int> &preorder,int preStart,int preEnd,std::vector<int> &inorder,int inStart,int inEnd)
	{
		if(preStart > preEnd || inStart > inEnd) return NULL;
		TreeNode *root = new TreeNode(preorder[preStart]);
		int rootIndex = 0;
		for (int i = inStart; i <= inEnd; i++)
		{
			if(inorder[i] == root->val)
			{
				rootIndex = i;
				break;
			}
		}
		int len = rootIndex - inStart;
		root->left = buildBinTree(preorder,preStart+1,preStart+len,inorder,inStart,rootIndex-1);
		root->right = buildBinTree(preorder,preStart+len+1,preEnd,inorder,rootIndex+1,inEnd);
		return root;
	}
};


leetcode - Construct Binary Tree from Preorder and Inorder Traversal

标签:style   color   io   ar   for   sp   art   c   on   

原文地址:http://blog.csdn.net/akibatakuya/article/details/39827071

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!