欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode 二叉树的中序遍历

程序员文章站 2022-05-19 20:58:23
...

给定一个二叉树,返回它的中序 遍历。

示例:

输入: [1,null,2,3]
1

2
/
3

输出: [1,3,2]
进阶: 递归算法很简单,你可以通过迭代算法完成吗?

解题思路:二叉树的中序遍历:左根右。采用递归的思路很简单。直接看代码吧。

代码:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
//使用递归确实很简单、满足左、根、右即可。
class Solution {
public:
     vector<int> inorderTraversal(TreeNode *root) {
         vector<int> res;
         inorder(root, res);
         return res;
     }
     void inorder(TreeNode *root, vector<int> &res) {
         if (!root) 
             return;
         if (root->left) 
             inorder(root->left, res);
         res.push_back(root->val);
         if (root->right) 
             inorder(root->right, res);
     }
 };