105. 从前序与中序遍历序列构造二叉树

目录

一:题目:

二:代码:

三:结果:


一:题目:

给定两个整数数组 preorderinorder ,其中 preorder 是二叉树的先序遍历inorder 是同一棵树的中序遍历,请构造二叉树并返回其根节点。

二:代码:

cpp 复制代码
/**
 * 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 {
    private:
    TreeNode* travsal(vector<int>& pre, vector<int>& in){
        if(pre.size()==0) return NULL;
        int target=pre[0];
        TreeNode* root=new TreeNode(target);
        if(pre.size()==1) return root;
        int i;
        for(i=0;i<in.size();i++){
            if(in[i]==target) break;
        }
        vector<int> leftin(in.begin(),in.begin()+i);
        vector<int> rightin(in.begin()+1+i,in.end());
        pre.erase(pre.begin()+0);
        vector<int> leftpre(pre.begin(),pre.begin()+leftin.size());
        vector<int> rightpre(pre.begin()+leftin.size(),pre.end());
        root->left=travsal(leftpre,leftin);
        root->right=travsal(rightpre,rightin);
        return root;
    }
public:
    TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
        if(preorder.size()==0||inorder.size()==0) return NULL;
        return travsal(preorder,inorder);
    }
};

三:结果:

相关推荐
算AI14 小时前
人工智能+牙科:临床应用中的几个问题
人工智能·算法
我不会编程55515 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
owde16 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
第404块砖头16 小时前
分享宝藏之List转Markdown
数据结构·list
hyshhhh16 小时前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
蒙奇D索大16 小时前
【数据结构】第六章启航:图论入门——从零掌握有向图、无向图与简单图
c语言·数据结构·考研·改行学it
A旧城以西17 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea
杉之17 小时前
选择排序笔记
java·算法·排序算法
烂蜻蜓17 小时前
C 语言中的递归:概念、应用与实例解析
c语言·数据结构·算法
OYangxf17 小时前
图论----拓扑排序
算法·图论