码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-----94. 二叉树的中序遍历

时间:2020-07-18 11:34:31      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:return   leetcode   class   problem   etc   tco   str   node   efi   

代码

/**
 * 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> ans;
        stack<TreeNode*> stk;

        while (root || stk.size()) {
            while (root) {
                stk.push(root);
                root = root->left;
            }
            root = stk.top();
            stk.pop();
            ans.push_back(root->val);
            root = root->right;
        }
        return ans;
    }
};

leetcode-----94. 二叉树的中序遍历

标签:return   leetcode   class   problem   etc   tco   str   node   efi   

原文地址:https://www.cnblogs.com/clown9804/p/13334526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!