中华考试网·阅读新闻
软件水平 > 初级资格 > 程序员 > 文章内容

计算机软考程序员常考基础必知必会(3)

2016-1-27编辑:guomu

二叉树三种遍历的非递归算法(背诵版)

  先序遍历非递归算法

#define maxsize 100
typedef struct
{
    Bitree Elem[maxsize];
    int top;
}SqStack;

void PreOrderUnrec(Bitree t)
{
    SqStack s;
    StackInit(s);
    p=t;
    while (p!=null || !StackEmpty(s))
    {
        while (p!=null)            //遍历左子树
        {
            visite(p->data);
            push(s,p);
            p=p->lchild;     
        }//endwhile
       
        if (!StackEmpty(s))        //通过下一次循环中的内嵌while实现右子树遍历
        {
            p=pop(s);
            p=p->rchild;      
        }//endif           
    }//endwhile   
}//PreOrderUnrec

计算机软考程序员常考基础必知必会(2)
咨询热线:4000-525-585(免长途费)