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

Leetcode 94. 二叉树的中序遍历

时间:2019-10-28 01:17:25      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:treenode   root   结构   top   tree   while   order   保存   非递归   

二叉树中序遍历

递归实现:

class Solution {
public:
    vector<int> inorderTraversal(TreeNode* root) {
        if(!root) return result;
        inorderCore(root);
        return result;        
    }
    
    void inorderCore(TreeNode* root) {
        if(root->left)  inorderCore(root->left);
        result.push_back(root->val);
        if(root->right) inorderCore(root->right);
    }
    
private:
    vector<int> result;
};

非递归实现。

class Solution {
public:
    vector<int> inorderTraversal(TreeNode* root) {
        vector<int> result;
        stack<TreeNode*> tmp;
        TreeNode* node = root;
        TreeNode* cur;
        while(node || !tmp.empty()) {
            while(node) {
                tmp.push(node);
                node = node->left;
            }
            node = tmp.top();
            tmp.pop();
            result.push_back(node->val);
            node = node->right;  
        }
        return result;
    }
    
};

分析:

1,使用堆栈作为存储结构
2, 当节点不为空或者堆栈,每次根据给定节点对其左子树进行入栈。
3,出栈,并且保存节点值,然后将右节点赋给当前节点(不用判断是否为空,若为空,刚好不用进行左节点遍历的步骤)

Leetcode 94. 二叉树的中序遍历

标签:treenode   root   结构   top   tree   while   order   保存   非递归   

原文地址:https://www.cnblogs.com/leyang2019/p/11749959.html

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