LeetCode-Q105-从前序与中序遍历序列构造二叉树

2024-04-25 21:58

本文主要是介绍LeetCode-Q105-从前序与中序遍历序列构造二叉树,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【labuladong P26】
【题目地址】https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/

【解题思路】https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/solution/cong-qian-xu-yu-zhong-xu-bian-li-xu-lie-gou-zao-9/

【题目】根据一棵树的前序遍历与中序遍历构造二叉树
【思路】前序遍历所得到的节点就是根节点,再更具中序遍历中根节点的位置将中序遍历左右分为左右子树,然后依次自身调用,最后实现二叉树的构建。
在这里插入图片描述
代码如下:

import java.util.HashMap;
import java.util.Map;class TreeNode{int val;TreeNode left;TreeNode right;TreeNode(int x){val = x;}
}
class Solution {public TreeNode buildTree(int[] preorder, int[] inorder){int preLen = preorder.length;int inLen = inorder.length;//合法性判断if(preLen != inLen){throw new RuntimeException("Incorrect input data.");}//构建hashmap存储Map<Integer, Integer> map = new HashMap<>(preLen);for(int i = 0; i < preLen; i++){map.put(inorder[i],i);}return buildTree(preorder, 0, preLen -1, map, 0, inLen -1);}/**@param preorder    前序遍历序列*@param preLeft     前序遍历序列子区间的左边界,可以取到本@param preRight 前序遍历序列子区间的右边界,可以取到*@param map         在中序遍历序列里,数值与下标的对应关系*@param inLeft      中序遍历序列子区间的左边界,可以取到本@param inRight 前序遍历序列子区间的右边界,可以取到*@return*///修改buildTree的方法定义private TreeNode buildTree(int[] preorder, int preLeft, int preRight, Map<Integer, Integer>map, int inLeft, int inRight){//修改递归终止条件if(preLeft > preRight || inLeft > inRight){return null;}//找到根节点并创建int rootVal = preorder[preLeft];TreeNode root = new TreeNode(rootVal);//找到根节点在中序遍历中的位置int pIndex = map.get(rootVal);root.left = buildTree(preorder, preLeft + 1, pIndex - inLeft + preLeft,map, inLeft,pIndex -1);root.right = buildTree(preorder,pIndex - inLeft + preLeft + 1, preRight,map, pIndex + 1, inRight);//最后返回根节点return root;}
}

这篇关于LeetCode-Q105-从前序与中序遍历序列构造二叉树的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/935901

相关文章

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

uva 10131 最长子序列

题意: 给大象的体重和智商,求体重按从大到小,智商从高到低的最长子序列,并输出路径。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vect

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

POJ1631最长单调递增子序列

最长单调递增子序列 import java.io.BufferedReader;import java.io.InputStream;import java.io.InputStreamReader;import java.io.PrintWriter;import java.math.BigInteger;import java.util.StringTokenizer;publ

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

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

根据一棵树的前序遍历与中序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 前序遍历 preorder = [3,9,20,15,7]中序遍历 inorder = [9,3,15,20,7] 返回如下的二叉树: 3/ \9 20/ \15 7   class Solution {public TreeNode buildTree(int[] pr

【JavaScript】LeetCode:16-20

文章目录 16 无重复字符的最长字串17 找到字符串中所有字母异位词18 和为K的子数组19 滑动窗口最大值20 最小覆盖字串 16 无重复字符的最长字串 滑动窗口 + 哈希表这里用哈希集合Set()实现。左指针i,右指针j,从头遍历数组,若j指针指向的元素不在set中,则加入该元素,否则更新结果res,删除集合中i指针指向的元素,进入下一轮循环。 /*** @param