English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 电子书籍 >
软件工程
> 查看源码
ch5_21.txt
资源名称:
数据结构( C语言版) 讲义.rar [点击查看]
上传用户:
lgb298
上传日期:
2013-03-22
资源大小:
1025k
文件大小:
0k
源码类别:
软件工程
开发平台:
C/C++
ch5_21.txt:源码内容
void zxblxss(JD *t)
{ JD *p;
p=t->lc;
do
{ while(p->lt==0)
p=p->lc;
printf("%c ",p->data);
while((p->rt==1)&&(p->rc!=t))
{ p=p->rc;
printf("%c ",p->data);
}
p=p->rc;
}while(p!=t);
}