/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
//遍历序列
int post_idx;
//哈希表
unordered_map<int, int>umap;
public:
TreeNode* helper(int in_left, int in_right, vector<int>& inorder, vector<int>& postorder){
//若空
if(in_left > in_right) return nullptr;
int root_val = postorder[post_idx];
//创建节点
TreeNode* root = new TreeNode(root_val);
int index = umap[root_val];
post_idx--;
//右子树
root->right = helper(index + 1, in_right, inorder, postorder);
//左子树
root->left = helper(in_left, index - 1, inorder, postorder);
return root;
}
TreeNode* buildTree(vector<int>& inorder, vector<int>& postorder) {
//开始序号
post_idx = postorder.size() - 1;
//
int idx = 0;
for(auto& innode : inorder){
umap[innode] = idx++;
}
//递归
return helper(0, postorder.size() - 1, inorder, postorder);
}
};
算法-二叉树-从中序与后序遍历序列构造二叉树(递归)
原创
©著作权归作者所有:来自51CTO博客作者一叶孤舟渡的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:算法-矩阵-螺旋矩阵(按层模拟)
下一篇:【C++算法刷题攻略】二叉树
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
【二叉树】从中序与后序构造二叉树
题目根据一棵树的 中序 遍历与 后序 遍历构造二叉树注意:你可以假设树中 没有 重复的元素
算法 二叉树 swift ios 数据结构 -
二叉树系列【 从中序与后序遍历序列构造二叉树】【最大二叉树】【合并二叉树】【二叉搜索树中的搜索】
最大二叉树合并二叉树二叉搜索树中的搜索
算法 leetcode 数据结构 二叉树 二叉搜索树 -
二叉树的中序遍历【二叉树】【递归】
时间复杂度:空间复杂度:
python 复杂度 Code 二叉树