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

二叉树的非递归遍历(前序,中序,后序和层序遍历)

时间:2016-10-15 17:14:06      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

void _PrevOrderNR(Node* root)    //非递归前序遍历
    {
        if (root == NULL)
            return;

        Node* cur = root;
        stack<Node*> s;
        while(cur||!s.empty())
        {
            while (cur)
            {
                cout << cur->_data << "  ";
                s.push(cur);
                cur = cur->_left;
            }

            Node* top = s.top();
            s.pop();
            cur = top->_right;
        }
        cout << endl;
    }

    void _InOrderNR(Node* root)    //非递归中序遍历
    {
        Node* cur = root;
        stack<Node*> s;
        while (cur || !s.empty())
        {
            while (cur)
            {
                s.push(cur);
                cur = cur->_left;
            }

            Node* top = s.top();
            cout << top->_data << "   ";
            s.pop();
            cur = top->_right;
        }
        cout << endl;
    }

    void _PostOrderNR(Node* root)    //非递归后序遍历
    {
        stack<Node*> s;
        Node* cur = root;
        Node* prev = NULL;
        while (cur || !s.empty())
        {
            while (cur)
            {
                s.push(cur);
                cur = cur->_left;
            }

            Node* top = s.top();
            if (top->_right == NULL || top->_right == prev)
            {
                cout << top->_data << "  ";
                prev = top;
                s.pop();
            }
            else
            {
                cur = top->_right;
            }
        }
        cout << endl;
    }

 

    void _LevelOrder(Node* root)   //层序遍历
    {
        
        Node* cur = root;
        queue<Node*> q;        
        if (root)
            q.push(root);
        while (!q.empty())
        {
            Node* front = q.front();
            q.pop();
            cout << front->_data << "  ";
            if (front->_left)
                q.push(front->_left);
            if (front->_right)
                q.push(front->_right);
        }
        cout << endl;
    }

二叉树的非递归遍历(前序,中序,后序和层序遍历)

标签:

原文地址:http://www.cnblogs.com/qingjiaowoxiaoxioashou/p/5964630.html

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