【力扣 - 二叉树的中序遍历】

题目描述

给定一个二叉树的根节点 root ,返回 它的 中序 遍历 。
在这里插入图片描述

提示:

树中节点数目在范围 [0, 100]

-100 <= Node.val <= 100

方法一:递归

思路与算法

首先我们需要了解什么是二叉树的中序遍历:按照访问左子树——根节点——右子树的方式遍历这棵树,而在访问左子树或者右子树的时候我们按照同样的方式遍历,直到遍历完整棵树。因此整个遍历过程天然具有递归的性质,我们可以直接用递归函数来模拟这一过程。

定义 inorder(root) 表示当前遍历到 root 节点的答案,那么按照定义,我们只要递归调用 inorder(root.left) 来遍历 root 节点的左子树,然后将 root 节点的值加入答案,再递归调用inorder(root.right) 来遍历 root 节点的右子树即可,递归终止的条件为碰到空节点。

代码

/*** Definition for a binary tree node.*/
struct TreeNode {int val;struct TreeNode *left;struct TreeNode *right;
};
/*** Note: The returned array must be malloced, assume caller calls free().*//** The  inorder  function performs an inorder traversal of a binary tree recursively. * It stores the values of the nodes in the result array  res  and increments the size  resSize  accordingly. *//** The function "inorder" in the provided code is a recursive function. * When a function calls itself inside its own definition, it is known as recursion. * In this case, the "inorder" function is designed to perform an inorder traversal of a binary tree. * 1. The "inorder" function is called with the root node of the binary tree.* 2. Inside the function, it first checks if the current node is NULL. If it is NULL, the function returns and the recursion stops.* 3. If the current node is not NULL, the function recursively calls itself for the left child of the current node (root->left). This step continues until it reaches a NULL node (i.e., the left subtree is fully traversed).* 4. After traversing the left subtree, the function stores the value of the current node in the result array and increments the size of the result array.* 5. Finally, the function recursively calls itself for the right child of the current node (root->right) to traverse the right subtree.* This recursive process repeats for each node in the binary tree, * effectively performing an inorder traversal by visiting the nodes in the order of left subtree - current node - right subtree. * Each recursive call maintains its own set of variables and execution context, * allowing the function to traverse the entire tree in an ordered manner.*/ 
void inorder(struct TreeNode* root, int* res, int* resSize) {// Check if the current node is NULLif (!root) {return;  // Return if the current node is NULL}// Traverse the left subtree in inorderinorder(root->left, res, resSize);// Store the value of the current node in the result array and increment the sizeres[(*resSize)++] = root->val;// Traverse the right subtree in inorderinorder(root->right, res, resSize);/** `res[(*resSize)++] = root->val;`  is not needed here,* because the inorder traversal of a binary tree is structured in such a way that after traversing the left subtree and the current node, * the traversal of the right subtree will naturally continue the process of storing the values in the correct order in the result array  `res` .* In an inorder traversal, the sequence of operations ensures that the left subtree is fully explored before visiting the current node, * and then the right subtree is explored after the current node. * Therefore, by the time the function returns from the recursive call  `inorder(root->right, res, resSize);` , * the right subtree has been traversed and the values have been stored in the result array in the correct order relative to the current node.* Including  `res[(*resSize)++] = root->val;`  after the right subtree traversal would result in duplicating the value of the current node in the result array, * which is unnecessary and would disrupt the correct inorder traversal sequence.*/
}
/** The  inorderTraversal  function initializes the result array, * calls the  inorder  function to perform the traversal, and then returns the result array. */ 
int* inorderTraversal(struct TreeNode* root, int* returnSize) {// Allocate memory for the result array// Create an integer array of size 501 dynamically on the heap and assigning the address of the first element of the array to the pointer variable  res .int* res = malloc(sizeof(int) * 501);// Initialize the return size to 0*returnSize = 0;// Perform inorder traversal starting from the root nodeinorder(root, res, returnSize);// Return the result array containing the inorder traversal of the binary treereturn res;
}

复杂度分析

时间复杂度:O(n),其中 n 为二叉树节点的个数。二叉树的遍历中每个节点会被访问一次且只会被访问一次。
空间复杂度:O(n)。空间复杂度取决于递归的栈深度,而栈深度在二叉树为一条链的情况下会达到 O(n)的级别。

方法二:迭代

思路与算法

方法一的递归函数我们也可以用迭代的方式实现,两种方式是等价的,区别在于递归的时候隐式地维护了一个栈,而我们在迭代的时候需要显式地将这个栈模拟出来,其他都相同。
在这里插入图片描述

代码

/*** Definition for a binary tree node.*/
struct TreeNode {int val;struct TreeNode *left;struct TreeNode *right;
};
/*** An iterative version of the inorder traversal of a binary tree without using recursion.*/
int* inorderTraversal(struct TreeNode* root, int* returnSize) {// Initialize return size to 0*returnSize = 0;// Allocate memory for the result arrayint* res = malloc(sizeof(int) * 501);// Allocate memory for the stack to keep track of nodesstruct TreeNode** stk = malloc(sizeof(struct TreeNode*) * 501);// Initialize top of the stack// variable top to keep track of the top of the stack. int top = 0;// Iterative inorder traversal using a stack// The while loop continues until the current node  root  is NULL and the stack is empty (indicated by  top > 0 ).while (root != NULL || top > 0) {// Traverse left subtree and push nodes onto the stack // a nested while loop to traverse the left subtree of the current node and pushes each node onto the stack. while (root != NULL) {stk[top++] = root;root = root->left;}// Check if the stack is not empty before poppingif (top > 0){// Once the left subtree is fully traversed// Pop a node from the stackroot = stk[--top];// Add the value of the popped node to the result arrayres[(*returnSize)++] = root->val;// Move to the right child of the popped noderoot = root->right;}}// Free the memory allocated for the stackfree(stk);// Return the result array containing inorder traversalreturn res;
}

复杂度分析

时间复杂度:O(n),其中 n 为二叉树节点的个数。二叉树的遍历中每个节点会被访问一次且只会被访问一次。

空间复杂度:O(n)。空间复杂度取决于栈深度,而栈深度在二叉树为一条链的情况下会达到 O(n)的级别。

方法三:Morris 中序遍历

思路与算法

Morris 遍历算法是另一种遍历二叉树的方法,它能将非递归的中序遍历空间复杂度降为 O(1)。

Morris 遍历算法整体步骤如下(假设当前遍历到的节点为 xxx):

  1. 如果 xxx 无左孩子,先将 xxx 的值加入答案数组,再访问 xxx 的右孩子,即 x=x.right
  2. 如果 xxx 有左孩子,则找到 xxx 左子树上最右的节点(即左子树中序遍历的最后一个节点,xxx 在中序遍历中的前驱节点),我们记为 predecessor。根据 predecessor 的右孩子是否为空,进行如下操作。
    • 如果 predecessor 的右孩子为空,则将其右孩子指向 xxx,然后访问 xxx 的左孩子,即 x=x.left
    • 如果 predecessor\ 的右孩子不为空,则此时其右孩子指向 xxx,说明我们已经遍历完 xxx 的左子树,我们将 predecessor 的右孩子置空,将 xxx 的值加入答案数组,然后访问 xxx 的右孩子,即 x=x.right
  3. 重复上述操作,直至访问完整棵树。
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    其实整个过程我们就多做一步:假设当前遍历到的节点为 x,将 x 的左子树中最右边的节点的右孩子指向 x,这样在左子树遍历完成后我们通过这个指向走回了 x,且能通过这个指向知晓我们已经遍历完成了左子树,而不用再通过栈来维护,省去了栈的空间复杂度。

代码

/*** Definition for a binary tree node.*/
struct TreeNode {int val;struct TreeNode *left;struct TreeNode *right;
};
/*** The algorithm uses a predecessor node to establish temporary links * between nodes to simulate the recursive call stack * that would be used in a recursive inorder traversal. * This approach allows for an iterative inorder traversal of the binary tree.*/
int* inorderTraversal(struct TreeNode* root, int* returnSize) {// Allocate memory for the result arrayint* res = malloc(sizeof(int) * 501);// Initialize return size to 0*returnSize = 0;// Initialize predecessor node to NULLstruct TreeNode* predecessor = NULL;// Traverse the tree in inorder without using recursionwhile (root != NULL) {// If the current node has a left childif (root->left != NULL) {// Find the predecessor node, which is the rightmost node in the left subtreepredecessor = root->left;while (predecessor->right != NULL && predecessor->right != root) {predecessor = predecessor->right;}// If predecessor's right child is NULL, establish a link and move to the left childif (predecessor->right == NULL) {predecessor->right = root;root = root->left;}// If the left subtree has been visited, disconnect the link and move to the right childelse {res[(*returnSize)++] = root->val;predecessor->right = NULL;root = root->right;}}// If there is no left child, visit the current node and move to the right childelse {res[(*returnSize)++] = root->val;root = root->right;}}// Return the result array containing inorder traversalreturn res;
}

复杂度分析

时间复杂度:O(n),其中 n 为二叉树的节点个数。Morris 遍历中每个节点会被访问两次,因此总时间复杂度为 O(2n)=O(n)。

空间复杂度:O(1)。

作者:力扣官方题解
链接:https://leetcode.cn/problems/binary-tree-inorder-traversal/solutions/412886/er-cha-shu-de-zhong-xu-bian-li-by-leetcode-solutio/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/691806.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux小程序--进度条

目录 1.知识补充 1.1回车和换行 1.2缓冲区 2.实现倒计时 3.实现进度条 1.知识补充 1.在制作小程序进度条之前&#xff0c;我们先了解一下&#xff0c;回车换行和行缓冲区的概念。 2.动态效果&#xff0c;在同一个位置刷新不同的图像&#xff0c;实现一个倒计时的效果。…

2024最新软件测试面试题(带答案)

1. 请自我介绍一下(需简单清楚的表述自已的基本情况&#xff0c;在这过程中要展现出自信&#xff0c;对工作有激情&#xff0c;上进&#xff0c;好学) 面试官您好&#xff0c;我叫###&#xff0c;今年26岁&#xff0c;来自江西九江&#xff0c;就读专业是电子商务&#xff0c;毕…

2024年华为OD机试真题- 求字符串中所有整数的最小和-Java-OD统一考试(C卷)

题目描述: 输入字符串s,输出s中包含所有整数的最小和 说明 1. 字符串s,只包含 a-z A-Z +- ; 2. 合法的整数包括 1) 正整数 一个或者多个0-9组成,如 0 2 3 002 102 2)负整数 负号 - 开头,数字部分由一个或者多个0-9组成,如 -0 -012 -23 -00023 输入描述: 包含…

Linux 磁盘分区、挂载

Linux 磁盘分区、挂载 Linux 分区 介绍 Linux 来说无论有几个分区&#xff0c;分给哪一目录使用&#xff0c;它归根结底就只有一个根目录&#xff0c;一个独立且唯一的文件结构 , Linux 中每个分区都是用来组成整个文件系统的一部分。 Linux 采用了一种叫“载入”的处理方法&…

(十四)devops持续集成开发——jenkins流水线使用pipeline方式发布项目

前言 本节内容我们使用另外一种方式pipeline实现项目的流水线部署发布&#xff0c;Jenkins Pipeline是一种允许以代码方式定义持续集成和持续交付流水线的工具。通过Jenkins Pipeline&#xff0c;可以将整个项目的构建、测试和部署过程以脚本的形式写入Jenkinsfile中&#xff…

爬虫02-python爬虫使用的库及详解

文章目录 1 Urllib库的基本使用① 基本url请求② 查看http请求的响应信息③ 另一个请求方法&#xff1a;Request④ Handler 处理请求和响应 & Cookie 存储用户信息⑤ 异常处理⑥ url解析 2 Requests库的基本使用① 模块的简单使用② requests模块的各种请求方式③ 请求④ 响…

打通全渠道,聚道云助力时尚巨头提升运营效能

客户介绍&#xff1a; 北京某时尚有限公司是一家集设计、生产、销售于一体的时尚产业领军企业。自成立以来&#xff0c;该公司一直秉承着对时尚的独特理解和不懈追求&#xff0c;以打造高品质、高品位的时尚产品为己任&#xff0c;深受国内外消费者的喜爱。 客户痛点&#xff…

springcloud:1.Eureka详细讲解

Eureka 是 Netflix 开源的一个服务注册和发现工具,被广泛应用于微服务架构中。作为微服务架构中的核心组件之一,Eureka 提供了服务注册、发现和失效剔除等功能,帮助构建弹性、高可用的分布式系统。在现代软件开发领域,使用 Eureka 可以有效地管理和监控服务实例,实现服务之…

网络安全综合实验

1.实验拓扑 在这里注意因为第四个要求配置双击热备&#xff0c;我们可以第一时间配置&#xff0c;避免二次重复配置消耗时间 4、FW1和FW3组成主备模式的双机热备 具体配置位置在系统-->高可靠性-->双机热备-->配置 这里上行链路有两组&#xff0c;分别为电信和移动&…

Sora后观察:AI大模型产业落地的八个锚点

在正在进行的2024年&#xff0c;国内大模型也将更下沉和落地&#xff0c;在技术上的突破之外&#xff0c;也会出现更多的向下的产业兼容和产业实践案例&#xff0c;作为新质生产力推动产业数字化转型的航船加速前进。 作者|斗斗 编辑|皮爷 出品|产业家 “电影讲述了一名…

期权无风险套利策略[2]—牛市垂直价差套利

牛市垂直价差 牛市垂直价差可以分为牛市看涨期权价差策略与牛市看跌期权价差策略。 其中&#xff0c;牛市看涨价差策略是指投资者买入较低行权价的认购期权、同时卖出数量较高行权价的同月认购期权。 牛市看跌价差策略同理&#xff0c;将看涨期权换成看跌期权即可。 牛市价…

分布式id实战

目录 常用方式 特征 潜在问题 信息安全 高性能 UUID 雪花算法 数据库生成 美团Leaf方案 Leaf-segment 数据库方案 Leaf-snowflake 方案 常用方式 uuid雪花算法数据库主键 特征 全局唯一趋势递增信息安全 潜在问题 信息安全 如果id连续递增, 容易被爬虫, 批量下…

Numba原子操作和期权蒙特卡洛估值

期权的蒙特卡洛法估值的一般步骤是 1&#xff0c;生成大量标的价格路径&#xff0c;这一步是通用的&#xff0c;对所有的期权都是一样的 2&#xff0c;根据价格路径计算到期日期权的价值&#xff0c;这一步根据期权类型的不同 3&#xff0c;求所有路径下期权价值贴现的期望。这…

想要拿下优质客户,一定把握好这几个关键阶段!

要想成交一个有潜力的优质客户往往需要经历五个阶段。这五个阶段分别是&#xff1a;获联、筛选、入野、破局、快速成交。 1、获联 我们的第一步工作&#xff0c;就是需要主动或者被动去吸引客户&#xff0c;把客户引进来。将客户引进来的方式有很多&#xff0c;比如朋友介绍、…

Java系列:Java多线程编程经典问题详解,深入解析Java多线程生命周期、死锁、活锁与饥饿、守护线程等问题

多线程编程是Java语言中的一个高级主题&#xff0c;它在提高程序性能和响应性方面起着至关重要的作用。本文旨在帮助Java学习人员深入理解多线程的概念&#xff0c;并准备相关的技术面试。 线程与进程 在深入多线程之前&#xff0c;我们需要理解线程与进程的基本概念。进程是…

汽车控制器软件正向开发

需求常见问题: 1.系统需求没有分层,没有结构化,依赖关系不明确 2.需求中没有验证准则 3.对客户需求的追溯缺失,不完整,颗粒度不够 4.系统需求没有相应的系统架构,需求没有分解到硬件和软件 5.需求变更管控不严格,变更频繁,变更纪录描述不准确,有遗漏,客户需求多…

Python学习笔记——按钮对象样式及字符串的格式化

在Python中使用PyQt或者PySide中按钮对象&#xff0c;可以使用setStyleSheet()方法更新按钮对象的样式&#xff0c;如果需要多次或者对多个按钮更新类似的样式&#xff0c;可以先建立一个样式字符串&#xff0c;字符串中包含定义的变量&#xff0c;通过字符串的格式化format()方…

SpringBoot配置文件日志

目录 一、SpringBoot配置文件的作用 二、SpringBoot配置文件的分类 1、application.properties 2、application.yml 3、application.yaml 三、使用配置文件实例--验证码 1、使用Kaptcha插件生成验证码 2、网页需求分析 3、前端页面 4、发送请求 5、服务器作出响应 …

VUE3 中导入Visio 图形

微软的Visio是一个功能强大的图形设计工具&#xff0c;它能够绘制流程图&#xff0c;P&ID&#xff0c;UML 类图等工程设计中常用的图形。它要比其它图形设计软件要简单许多。以后我的博文中将更多地使用VISO 来绘制图形。之前我一直使用的是corelDraw。 Visio 已经在工程设…

Django中redis和日志配置

# django-redis 配置 CACHES {"default": {"BACKEND": "django_redis.cache.RedisCache","LOCATION": "redis://192.168.3.109:6379/0","OPTIONS": {"CLIENT_CLASS": "django_redis.client.Defau…