【LeetCode】94. 二叉树的中序遍历

题目:94. 二叉树的中序遍历

给定一个二叉树的根节点 root ,返回它的 中序 遍历。
示例 1:
【LeetCode】94. 二叉树的中序遍历

输入:root = [1,null,2,3]
输出:[1,3,2]

示例 2:

输入:root = []
输出:[]

示例 3:

输入:root = [1]
输出:[1]

示例 4:
【LeetCode】94. 二叉树的中序遍历

输入:root = [1,2]
输出:[2,1]

示例 5:
【LeetCode】94. 二叉树的中序遍历

输入:root = [1,null,2]
输出:[1,2]

提示:

  • 树中节点数目在范围 [0, 100]
  • -100 <= Node.val <= 100

解题思路

二叉树的中序遍历,采用左——中——右顺序递归

代码

/**
 * 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 {
public:
    vector<int> res;
    void inorder(TreeNode* root) {
        if (root == nullptr) return ;
        if (root->left) inorder(root->left);
        res.push_back(root->val);
        if (root->right) inorder(root->right);
    }
    vector<int> inorderTraversal(TreeNode* root) {
        inorder(root);
        return res;
    }
};
上一篇:SpringCloudAlibaba io.seata.common.exception.FrameworkExceptioncan not register RM,err:can not conne


下一篇:LeetCode.515. 在每个树行中找最大值