leetCode.94.94. 二叉树的中序遍历

leetCode.94.94. 二叉树的中序遍历

没什么好讲思路的,直接上代码

cpp 复制代码
/**
 * 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;
    vector<int> inorderTraversal(TreeNode* root) {
        dfs( root );
        return res;
    }

    void dfs( TreeNode * root ) {
        if ( !root ) return ;

        dfs( root->left );
        res.push_back(root->val);
        dfs( root->right );
    }
};
相关推荐
Bran_Liu1 小时前
【LeetCode 刷题】字符串-字符串匹配(KMP)
python·算法·leetcode
Jcqsunny1 小时前
[分治] FBI树
算法·深度优先··分治
00Allen003 小时前
Java复习第四天
算法·leetcode·职场和发展
SsummerC6 小时前
【leetcode100】二叉搜索树中第k小的元素
数据结构·python·算法·leetcode
<但凡.6 小时前
题海拾贝:力扣 138.随机链表的复制
数据结构·算法·leetcode
fks1438 小时前
leetcode 121. 买卖股票的最佳时机
leetcode
Bran_Liu8 小时前
【LeetCode 刷题】栈与队列-队列的应用
数据结构·python·算法·leetcode
嘻嘻哈哈樱桃9 小时前
前k个高频元素力扣--347
数据结构·算法·leetcode
MrZhangBaby10 小时前
SQL-leetcode—1158. 市场分析 I
java·sql·leetcode
南宫生11 小时前
力扣动态规划-7【算法学习day.101】
java·数据结构·算法·leetcode·动态规划