郝斌老师数据结构上课代码

郝斌老师数据结构上课代码

ID:39514280

大小:83.00 KB

页数:14页

时间:2019-07-04

郝斌老师数据结构上课代码_第1页
郝斌老师数据结构上课代码_第2页
郝斌老师数据结构上课代码_第3页
郝斌老师数据结构上课代码_第4页
郝斌老师数据结构上课代码_第5页
资源描述:

《郝斌老师数据结构上课代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、第一部分typedefine的用法#includetypedefstructStudent{intsid;charname[100];charsex;}*PSTU,STU;//等价于STU代表structStudent,PSTU代表了structStudent*intmain(void){STUst;//structStudtnst;PSTUps=&st;//structStudent*ps=&st;ps->sid=99;printf("%d",ps->sid);return0;}第二部分链表部分的全部代码#include#include

2、h>#includestructnode{intdata;structnode*next;};//创建一个链表,返回pheadstructnode*creat_list()//函数返回类型为structnode*类型{structnode*phead=NULL;structnode*ptail=NULL;structnode*pnew=NULL;inti;intlen;intval;phead=(structnode*)malloc(sizeof(structnode));if(phead==NULL){printf("动态分配失败");exit(-1);}phead-

3、>next=NULL;ptail=phead;printf("请输入链表的长度len:");scanf("%d",&len);for(i=0;idata=val;pnew->next=NULL;ptail->next=pnew;ptail=pnew;}returnphead;}//输出链

4、表voidshow_list(structnode*phead){structnode*p;p=phead->next;while(p!=NULL){printf("%5d",p->data);p=p->next;}printf("");}//判断链表是否为空boolis_empty(structnode*phead){if(phead->next==NULL)returntrue;elsereturnfalse;}//求链表的长度intlength_list(structnode*phead){intlen=0;structnode*p;p=phead->next;while(p!=NU

5、LL){++len;p=p->next;}returnlen;}//对链表进行排序voidsort_list(structnode*phead){intl;inti,j,t;structnode*p,*q;l=length_list(phead);for(i=0,p=phead->next;inext){for(j=i+1,q=p->next;jnext){if(p->data>q->data){t=p->data;p->data=q->data;q->data=t;}}}}//在链表中插入数据voidinsert_list(structno

6、de*phead,intpos,intval){inti;structnode*p=phead->next;structnode*pnew;if(p==NULL){printf("程序出错!");exit(-1);}for(i=0;inext;++i;}//让p指向插入位置的前面一个节点pnew=(structnode*)malloc(sizeof(structnode));pnew->data=val;pnew->next=p->next;p->next=pnew;return;}//删除链表中某一位置的节点voiddelete_list(structn

7、ode*phead,intpos){inti;structnode*p=phead->next;structnode*q;if(p==NULL){printf("程序出错!");exit(-1);}for(i=0;inext;++i;}q=p->next;p->next=q->next;return;}//主函数intmain(){intl;structnod

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。