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

题目描述

给定一个二叉树的根节点 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.hqwc.cn/news/478226.html

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

相关文章

数字化转型导师坚鹏:政府数字化转型之数字化技术

政府数字化转型之数字化技术 ——物联网、云计算、大数据、人工智能、虚拟现实、区块链、数字孪生、元宇宙等综合解析及应用 课程背景&#xff1a; 数字化背景下&#xff0c;很多政府存在以下问题&#xff1a; 不清楚新技术的发展现状&#xff1f; 不清楚新技术的重要应…

飞天使-k8s知识点19-kubernetes实操4-资源调度 标签和选择器:Label与Selector的使用-版本回退

文章目录 添加label资源调度 Deployment&#xff1a;创建与配置文件解析rs pod deploy 的关联信息展示Deployment&#xff1a;滚动更新Deployment&#xff1a;回滚回退版本实际操作 添加label [rootkubeadm-master1 test]# kubectl get pod NAME …

压缩感知——革新数据采集的科学魔法

引言&#xff1a; 在数字时代&#xff0c;数据以及数据的收集和处理无处不在。压缩感知(Compressed Sensing, CS)是一种新兴的数学框架&#xff0c;它挑战了我们传统上对数据采集和压缩的看法&#xff0c;给医学图像、天文观测、环境监测等领域带来了颠覆性的影响。但到底什么…

【办公类-16-07-02】“2023下学期 周计划-户外游戏 每班1周五天相同场地,6周一次循环”(python 排班表系列)

背景需求&#xff1a; 又到了开学季&#xff0c;新的自主游戏&#xff08;户外游戏&#xff09;安排表出炉了。 这张是贴在美术活动室的安排表&#xff0c;我需要转换成班级为单位的安排表&#xff0c;便于批量制作周计划。 设计思路&#xff1a; 1、一个班级每周轮到的一个场…

通过VSCode开发Python项目

一、插件准备 Python 插件&#xff0c;必须 autoDocstring 生成注释&#xff0c;和Pycharm一样输入三个引号"""会生产注释结构 Todo Tree 高亮显示 TODO/FIXME 二、python相关设置 一&#xff09;设置python环境 按"F1"打开命令面板&#xff08;…

嵌入式 系统 开发 - 第一件事 “搭开发环境”

无论是对DSP&#xff0c;FPGA&#xff0c;或其他可编程芯片开发 都要 “搭开发环境” &#xff1a; 懒得写太多字&#xff0c;画个图来扯淡吧&#xff01; 看看实际 怎么搞的 &#xff1a;&#xff09; 这张照片仅仅是 老哥 自己的一个DSP开发实际连结的搞法儿啊&#xff0c…

电脑数据丢失怎么办?5 种免费数据恢复软件能帮到您

我们存储在计算机中的个人和专业数据如果丢失&#xff0c;可能会给我们带来经济和精神上的困扰。有许多情况会导致此类数据丢失&#xff1b;其中一些包括意外删除、硬盘驱动器故障、软件崩溃、病毒攻击等。 5 种最佳免费数据恢复软件 为防止此类事故&#xff0c;建议定期备份计…

Kubernetes基础(二十二)-k8s持久化存储详解

1 volume 1.1 介绍 在容器中的磁盘文件是短暂的&#xff0c;当容器崩溃时&#xff0c;Kubelet会重新启动容器&#xff0c;但容器运行时产生的数据文件都将会丢失&#xff0c;之后容器会以最干净的状态启动。另外&#xff0c;当一个Pod运行多个容器时&#xff0c;各个容器可能…

http相关概念以及apache的功能

概念 互联网&#xff1a;是网络的网络&#xff0c;是所有类型网络的母集 因特网&#xff1a;世界上最大的互联网网络 万维网&#xff1a;www &#xff08;不是网络&#xff0c;而是数据库&#xff09;是网页与网页之间的跳转关系 URL:万维网使用统一资源定位符&#xff0c;…

正整数A+B(PTA团体天题练习题)细节题刨析

哎呀&#xff0c;又是看似简单的AB模型&#xff0c;这题确实也是AB&#xff0c;不过这个题让我debug1个多小时才找出来问题所在&#xff0c;服了&#xff0c;真是所谓细节决定成败&#xff0c;这题也挺值得记录下来的&#xff0c;话不多嗦&#xff0c;看题 题的目标很简单&…

【深入理解设计模式】单例设计模式

单例设计模式 概念&#xff1a; 单例模式&#xff08;Singleton Pattern&#xff09;是 Java 中最简单的设计模式之一。 单例设计模式是一种创建型设计模式&#xff0c;其主要目的是确保类在应用程序中的一个实例只有一个。这意味着无论在应用程序的哪个位置请求该类的实例&a…

左右联动布局效果

效果图&#xff1a; <template><el-dialog :modelValue"modelValue" :before-close"close" fullscreen :close-on-click-modal"false"><div class"farmer_detail"><div class"info_content"><di…