数据结构课程设计之-树与二叉树的转换(7)

时间:2026-01-19

}

else //第二次出现在栈顶 {

cout<<temp->btnode->data<<" "; p=NULL; } } } }

7层次序树的非递归算法

void initqueue(linkqueue &q) //初始化一个带头结点的队列 {

q.front=q.rear=(queueptr)malloc(sizeof(queuenode)); q.front->next=NULL; }

void enqueue(linkqueue &q,bitrees p) //入队列 {

queueptr s; int first=1;

s=(queueptr)malloc(sizeof(queuenode)); s->ch=p;

s->next=NULL; q.rear->next=s; q.rear=s; }

void dequeue(linkqueue &q,bitrees &p) //出队列 {

int data; queueptr s;

s=q.front->next; p=s->ch;

data=p->data;

q.front->next=s->next; if(q.rear==s) q.rear=q.front; free(s);

printf("%d\t",data); }

int queueempty(linkqueue q) //判断队列是否为空 {

if(q.front->next==NULL) return 1; return 0;

数据结构课程设计之-树与二叉树的转换(7).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:4.9 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:19元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219