非递归遍历二叉树

【非递归前中后序遍历二叉树】
有关二叉树的建立及基本操作在上一篇,戳链接二叉树的基本操作
【非递归·前序】
非递归·前序

//非递归 前序遍历
void BTreePrevOrderNonR(BTNode* root)
{
    BTNode* cur = root;
    BTNode* top = NULL;
    stack S;
    StackInit(&S);
    while (cur || StackEmpty(&S) != 0)
    {
        while (cur)
        {
            printf("%d", cur->_data);//访问结点
            StackPush(&S, cur);
            cur = cur->_left;//左子树
        }
        top = StackTop(&S);
        StackPop(&S);
        cur = top->_right;//右子树
    }
}

【非递归·中序】
非递归·中序

//非递归 中序遍历
void BTreeInOrderNonR(BTNode* root)
{
    BTNode* cur = root;
    BTNode* top = NULL;
    stack S;
    StackInit(&S);
    while (cur || StackEmpty(&S) != 0)
    {
        while (cur)
        {
            StackPush(&S, cur);
            cur = cur->_left;//走到最左结点
        }
        top = StackTop(&S);
        printf("%d", top->_data);
        StackPop(&S);
        cur = top->_right;
    }
}

【非递归·后序】
非递归·后序

//非递归 后序遍历
void BTreePostOrderNonR(BTNode* root)
{
    BTNode* cur = root, *top = NULL, *prev = NULL;
    Stack S;
    StackInit(&S);
    while (cur || StackEmpty(&S) != 0)
    {
        while (cur)
        {
            StackPush(&S, cur);
            cur = cur->_left;
        }
        top = StackTop(&S);
        if (top->_right == NULL || top->_right == prev)//判断右子树有没有访问
        {
            printf("%d", top->_data);
            prev = top;
            StackPop(&S);
        }
        else//右子树没有被访问
        {
            cur = top->_right;
        }
    }
}

如果有不对的地方,可以评论告诉我,望指导!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值