根据先序序列和中序序列构造二叉树进行层次遍历

2024-06-20 03:38

本文主要是介绍根据先序序列和中序序列构造二叉树进行层次遍历,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

基于遍历先序序列的每个元素分割中序序列为左右子树进行递归操作。

import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Queue;public class Tree {static int[] pretemp;private static int maxLevel = 0;public class BinarayTreeNode {public int m_Value;public BinarayTreeNode m_LeftTreeNode = null;public BinarayTreeNode m_RigtTreeNode = null;}public BinarayTreeNode Construct(int[] preorder, int[] inorder) {if (preorder == null || inorder == null || inorder.length == 0 || preorder.length == 0) {return null;}int ptr = 0;int rootValue = preorder[0];BinarayTreeNode rootNode = new BinarayTreeNode();rootNode.m_Value = rootValue;while (ptr <= inorder.length && inorder[ptr] != rootValue) {ptr++;}pretemp = new int[preorder.length - 1];for (int i = 0; i < preorder.length; i++) {if (i == 0) {continue;}pretemp[i - 1] = preorder[i];}int[] inStart = new int[ptr];int[] inEnd = new int[inorder.length - ptr - 1];int ps = 0;for (int j = 0; j < inorder.length; j++) {if (j < ptr) {inStart[j] = inorder[j];}if (j > ptr) {inEnd[ps] = inorder[j];ps++;}}rootNode.m_LeftTreeNode = Construct(pretemp, inStart);rootNode.m_RigtTreeNode = Construct(pretemp, inEnd);return rootNode;}// print binarayTree as level modepublic static void PrintLevelTree(BinarayTreeNode pRoot) {Queue<BinarayTreeNode> nodeQueue = new LinkedList<BinarayTreeNode>();nodeQueue.add(pRoot);while (nodeQueue != null) {BinarayTreeNode node = nodeQueue.poll();if (node != null)System.out.print(node.m_Value);if (node != null && node.m_LeftTreeNode != null)nodeQueue.add(node.m_LeftTreeNode);if (node != null && node.m_RigtTreeNode != null)nodeQueue.add(node.m_RigtTreeNode);if (node == null) {System.out.println();break;}}}// get current binarayTree levelprivate static int getTreeLeverl(BinarayTreeNode pRoot, int level) {if (pRoot != null) {level++;}if( maxLevel < level ) maxLevel = level;if (pRoot.m_LeftTreeNode != null) {getTreeLeverl(pRoot.m_LeftTreeNode, level);} if (pRoot.m_RigtTreeNode != null) {getTreeLeverl(pRoot.m_RigtTreeNode, level);}return maxLevel ;}private static void printTreeLeverl(Map<Integer, String> printInfo, BinarayTreeNode pRoot, int level) {String value = printInfo.get(level);value = value == null ? "" : value;value = value + pRoot.m_Value +" " ;printInfo.put(level, value);level++;if (pRoot.m_LeftTreeNode != null) {printTreeLeverl(printInfo, pRoot.m_LeftTreeNode, level);}if (pRoot.m_RigtTreeNode != null) {printTreeLeverl(printInfo, pRoot.m_RigtTreeNode, level);}}public static void main(String[] args) {int preorder[] = { 1, 2, 4,9, 7, 0,8,3, 5, 6, 8 }; // 先序int inorder[] = { 9, 4, 7,8, 0,2, 1, 5, 3, 8, 6 }; // 中序//根据先序中序构造二叉树BinarayTreeNode root = new Tree().Construct(preorder, inorder);System.out.println("==========");int totollevel = getTreeLeverl(root, 0);System.out.println("二叉树的深度:"+totollevel);System.out.println("==========");System.out.print("二叉树的层次遍历:");PrintLevelTree(root);System.out.println("===========");System.out.println("二叉树的层次结构:");System.out.println("===========");Map<Integer, String> printInfo = new HashMap<Integer, String>();printTreeLeverl(printInfo, root, 1);for (Entry<Integer, String> map : printInfo.entrySet()) {System.out.println(map.getValue());}}
}

 

这篇关于根据先序序列和中序序列构造二叉树进行层次遍历的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

业务中14个需要进行A/B测试的时刻[信息图]

在本指南中,我们将全面了解有关 A/B测试 的所有内容。 我们将介绍不同类型的A/B测试,如何有效地规划和启动测试,如何评估测试是否成功,您应该关注哪些指标,多年来我们发现的常见错误等等。 什么是A/B测试? A/B测试(有时称为“分割测试”)是一种实验类型,其中您创建两种或多种内容变体——如登录页面、电子邮件或广告——并将它们显示给不同的受众群体,以查看哪一种效果最好。 本质上,A/B测

uva 10131 最长子序列

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

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

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

遮罩,在指定元素上进行遮罩

废话不多说,直接上代码: ps:依赖 jquer.js 1.首先,定义一个 Overlay.js  代码如下: /*遮罩 Overlay js 对象*/function Overlay(options){//{targetId:'',viewHtml:'',viewWidth:'',viewHeight:''}try{this.state=false;//遮罩状态 true 激活,f

利用matlab bar函数绘制较为复杂的柱状图,并在图中进行适当标注

示例代码和结果如下:小疑问:如何自动选择合适的坐标位置对柱状图的数值大小进行标注?😂 clear; close all;x = 1:3;aa=[28.6321521955954 26.2453660695847 21.69102348512086.93747104431360 6.25442246899816 3.342835958564245.51365061796319 4.87

Python脚本:对文件进行批量重命名

字符替换:批量对文件名中指定字符进行替换添加前缀:批量向原文件名添加前缀添加后缀:批量向原文件名添加后缀 import osdef Rename_CharReplace():#对文件名中某字符进行替换(已完结)re_dir = os.getcwd()re_list = os.listdir(re_dir)original_char = input('请输入你要替换的字符:')replace_ch

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT

day-50 求出最长好子序列 I

思路 二维dp,dp[i][h]表示nums[i] 结尾,且有不超过 h 个下标满足条件的最长好子序列的长度(0<=h<=k),二维数组dp初始值全为1 解题过程 状态转换方程: 1.nums[i]==nums[j],dp[i,h]=Math.max(dp[i,h],dp[j,h]+1) 2.nums[i]!=nums[j],dp[i,h]=Math.max(dp[i,h],dp[j,h-1