题目描述:
输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。
本题考点:
1). 二叉树的三种遍历(前序遍历(DLR),中序遍历(LDR),后序遍历(LRD))实现。
解题思路:
此题与LeetCode-105题一样,与106题从中序与后序遍历序列构造二叉树思路类似。
理解二叉树以及三种遍历的概念。二叉树 - 前序遍历、中序遍历、后序遍历
注意前序遍历中的第一个数字是根节点的值,在中序遍历中根节点的值在序列中间,左子树的节点的值在根节点的值的左边,而右子树的节点的值位于根节点的右边,所以先扫描中序遍历,找到根节点所在位置,然后找到左子树和右子树的前序遍历和中序遍历即可。如图所示:
代码
C++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| class Solution { public: TreeNode* reConstructBinaryTree(vector<int> pre,vector<int> vin) { if (pre.empty() || vin.empty()) return NULL; int n = pre.size(); int root = pre[0]; TreeNode* t = new TreeNode(root); int root_index = 0; for (int i = 0; i < n; i++) { if (vin[i] == root) { root_index = i; break; } } vector<int> left_pre,left_in, right_pre, right_in; for (int i = 0;i < root_index; i++) { left_pre.push_back(pre[i+1]); left_in.push_back(vin[i]); } for (int i=root_index+1;i<n;i++) { right_pre.push_back(pre[i]); right_in.push_back(vin[i]); } t->left = reConstructBinaryTree(left_pre,left_in); t->right = reConstructBinaryTree(right_pre,right_in); return t; } };
|
Python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
class Solution: def reConstructBinaryTree(self, pre, tin): if not pre or not tin: return None root = TreeNode(pre.pop(0)) index = tin.index(root.val) root.left = self.reConstructBinaryTree(pre, tin[:index]) root.right = self.reConstructBinaryTree(pre, tin[index + 1:]) return root
|
参考: