资源描述:
《严蔚敏版数据结构学生信息带头节点单链表》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include#includetypedefstructStudent/*定义学生类*/{intnum;charname[20];charsex[2];intage;floatgrade;}stu;typedefstructLNode{studata;structLNode*next;}LNode,*Linklist;LinklistInitList_L()/*构造一个空的单向链表*/{LinklistL;L=(Linklist)malloc(sizeof(stu));if(!L)printf("ERROR
2、n");else{L->next=NULL;printf("OK");}return(L);}voidDestroyList_L(LinklistL)/*销毁单向链表*/{Linklistp;if(!L)printf("ERROR");else{while(L){p=L;L=L->next;free(p);}printf("OK");}}voidClearList_L(LinklistL)/*将L重置为空表*/{Linklistp;if(!L)printf("ERROR");else{while(L->next){p=L->next
3、;L->next=p->next;free(p);}printf("OK");}}voidListEmpty_L(LinklistL)/*L为空表返回TRUE,否则返回FALSE*/{if(!L)printf("ERROR");else{if(!L->next)printf("TRUE");elseprintf("FLASE");}}intListLength_L(LinklistL)/*返回L中数据元素个数*/{inti=0;Linklistp=L;if(!L)return0;else{while(p->next){i++;p=p
4、->next;}returni;}}voidGetElem_L(LinklistL,inti)/*返回第i个元素的值*/{Linklistp=L->next;intj=1;while(p&&jnext;++j;}if(!p
5、
6、j>i)printf("ERROR");else{printf("第%d个学生的数据为:",i);printf("学号:%d姓名:%s性别:%s年龄:%d成绩:%f",p->data.num,p->data.name,p->data.sex,p->data.age,p->data.
7、grade);printf("OK");}}voidPriorElem_L(LinklistL,stucur_e)/*返回cur_e的前驱*/{Linklistp=L;while(p->next&&(p->next->data).num!=cur_e.num)p=p->next;if(!p->next
8、
9、p==L)printf("ERROR");else{printf("cur-e的前驱的数据为:");printf("学号:%d姓名:%s性别:%s年龄:%d成绩:%f",p->data.num,p->data.nam
10、e,p->data.sex,p->data.age,p->data.grade);printf("OK");}}voidNextElem_L(LinklistL,stucur_e)/*用next_e返回cur_e的后驱*/{Linklistp=L->next;while(p&&(p->data).num!=cur_e.num)p=p->next;if(!p
11、
12、!p->next)printf("ERROR");else{printf("cur-e的后驱的数据为:");printf("学号:%d姓名:%s性别:%s年龄:%d
13、成绩:%f",p->next->data.num,p->next->data.name,p->next->data.sex,p->next->data.age,p->next->data.grade);printf("OK");}}voidListInsert_L(LinklistL,inti)/*在i位置之前插入新元素*/{intj=0;Linklistp=L,s;while(p&&jnext;++j;}if(!p
14、
15、j>i-1)printf("ERROR");else{s=(Linklist)malloc(si
16、zeof(LNode));printf("请输入要插入学生元素的数据:");printf("学号:");scanf