leetcode二叉树遍历

二叉树的遍历主要以根节点为中心展开思路去写,这里先讲下前序遍历非递归,通常的数组二叉树,

都是以标记进行,这里由于是链式二叉树,所以可以通过把每个节点的左右节点指向变为NULL,这样

第二次遍历到就可以通过左右节点进行判断,从而加入结果遍历中:

后序遍历非递归:

class Solution {
public:
    vector<int> postorderTraversal(TreeNode *root) {
        vector<int> v;
        if(root==NULL)
            return v;
        stack<TreeNode*> s;
        s.push(root);
        while(!s.empty()){
            TreeNode *cur=s.top();
            if(cur->left==NULL&&cur->right==NULL){
                v.push_back(cur->val);
                s.pop();
            } 
            else{
                if(cur->right){
                    s.push(cur->right);
                    cur->right=NULL;
                }
                if(cur->left){
                    s.push(cur->left);
                    cur->left=NULL;
                }
            }
        }
        return v;
    }
};

后序遍历递归:

非递归主要注意vector传值的时候也要用引用。

class Solution {
public:
    vector<int> postorderTraversal(TreeNode *root) {
        vector<int> v;
        if(root==NULL)
            return v;
        postOrder(root,v);
        return v;
    }
    void postOrder(TreeNode *root,vector<int> &v){
        if(root->left)
            postOrder(root->left,v);
        if(root->right)
            postOrder(root->right,v);
        v.push_back(root->val);
    }
};
前序遍历非递归:

class Solution {
public:
    vector<int> preorderTraversal(TreeNode *root) {
        vector<int> v;
        if(root==NULL)
            return v;
        stack<TreeNode*> s;
        s.push(root);
        while(!s.empty()){
           	TreeNode *cur=s.top();
            s.pop();
            v.push_back(cur->val);
            if(cur->right){
                s.push(cur->right);
            }
            if(cur->left){
                s.push(cur->left);
            }
        }
        return v;
    }
};
前序遍历递归:

class Solution {
public:
    vector<int> preorderTraversal(TreeNode *root) {
        vector<int> v;
        if(root==NULL)
            return v;
        preOrder(root,v);
        return v;
    }
    void preOrder(TreeNode *root,vector<int> &v){
        v.push_back(root->val);
        if(root->left)
            preOrder(root->left,v);
        if(root->right)
            preOrder(root->right,v);
    }
};
中序遍历递归:

vector<int> inorderTraversal(TreeNode *root) {
            vector<int> v;
            if(root==NULL)
                return v;
            inOrder(root,v);
            return v;
        }
        void inOrder(TreeNode *root,vector<int> &v){
            if(root->left)
                inOrder(root->left,v);
            v.push_back(root->val);
            if(root->right)
                inOrder(root->right,v);
        }
中序遍历非递归:

和后序非递归类似,记得指针赋值NULL。

class Solution {
public:
    vector<int> inorderTraversal(TreeNode *root) {
            vector<int> v;
            if(root==NULL)
                return v;
            stack<TreeNode*> s;
            s.push(root);
            while(!s.empty()){
                TreeNode *cur=s.top();
                if(cur->left){
                    s.push(cur->left);
                    cur->left=NULL;
                }
                else{
                    v.push_back(cur->val);
                    s.pop();
                    if(cur->right){
                    s.push(cur->right);
                   }
                }
                
            }
            return v;
        }
};






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值