【算法】leetcode 105 从前序与中序遍历序列构造二叉树

题目

输入某二叉树的前序遍历和中序遍历的结果,请构建该二叉树并返回其根节点。

假设输入的前序遍历和中序遍历的结果中都不含重复的数字。

示例 1:

复制代码
Input: preorder = [3,9,20,15,7], inorder = [9,3,15,20,7]
Output: [3,9,20,null,null,15,7]

示例 2:

复制代码
Input: preorder = [-1], inorder = [-1]
Output: [-1]

限制:

0 <= 节点个数 <= 5000

解答

cpp 复制代码
#include <iostream>
#include <unordered_map>
#include <vector>

using namespace std;

struct TreeNode
{
    int val;
    TreeNode *left;
    TreeNode *right;
    TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};

class Solution {
public:
    TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
       for (int i = 0; i < inorder.size(); i++)
        {
            // 用中序遍历数组建立 值-下标 的映射
            value_index[inorder[i]] = i;
        }
        return recursive(preorder,0, 0, inorder.size() - 1);
    }
    TreeNode *recursive(vector<int>& pre,int pre_root, int in_left, int in_right)
    {
        if (in_left > in_right) return nullptr;
        // 将对应的 val 赋给 node 节点
        TreeNode *node = new TreeNode(pre[pre_root]);
        int in_root = value_index[pre[pre_root]];
        node->left = recursive(pre,pre_root + 1, in_left, in_root - 1);
        node->right = recursive(pre,pre_root + in_root - in_left + 1, in_root + 1, in_right);
        return node;
    }
private:
    unordered_map<int, int> value_index;
};
相关推荐
柏木乃一1 小时前
多态以及多态底层的实现原理
数据结构·c++·算法·stl·多态·虚函数表
Aqua Cheng.1 小时前
25.4.22华为--算法真题整理(2025年4月22日)
java·算法·leetcode·华为·面试
东阳马生架构2 小时前
Sentinel源码—9.限流算法的实现对比二
算法·sentinel
东阳马生架构2 小时前
Sentinel源码—9.限流算法的实现对比一
算法·sentinel
its_a_win2 小时前
Codeforces Round 998 (Div. 3) ABCD
算法
结冰架构2 小时前
量子金融工程:蒙特卡洛算法误差压缩至0.3%
人工智能·算法·ai·金融·量子计算
良木林2 小时前
240423 leetcode exercises
算法·leetcode
满怀10152 小时前
【LeetCode】7.整数反转
leetcode·题解
C_V_Better3 小时前
数据结构-链表
java·开发语言·数据结构·后端·链表
潦草通信狗3 小时前
Joint communication and state sensing under logarithmic loss
人工智能·深度学习·算法·机器学习·信号处理·信息论·通信感知一体化