《实验十链表操作》word版.doc_第1页
《实验十链表操作》word版.doc_第2页
《实验十链表操作》word版.doc_第3页
《实验十链表操作》word版.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

实验十 链表操作实验目的 掌握链表的定义和使用方法,能熟练进行链表的各种操作。实验内容 定义一学生链表,完成建立链表、打印链表、插入链表和删除链表操作。实验步骤(1)分别定义四个函数create( ),print( ), insert( ),del( )。(2)在主函数中调用上述函数,测试各函数的功能。源程序:#include#includestruct studentint no;struct student *next;/建立链表struct student *create()struct student *head,*p1,*p2;head=NULL;p1=p2=(struct student *)malloc(sizeof (struct student);scanf(%d,&p1-no);while(p1-no!=0)if (head=NULL) head=p1;else p2-next=p1;p2=p1;p1=(struct student *)malloc(sizeof (struct student);scanf(%d,&p1-no);p2-next=NULL;return head;/打印链表void print(struct student *head)struct student *p;p=head;while(p!=NULL) printf(%5d,p-no); p=p-next; printf(n);/删除链表struct student *del(struct student *head,int num) struct student *p1,*p2;if (head=NULL) printf(NULLn);elsep1=head;while(p1-no!=num&p1-next!=NULL)p2=p1;p1=p1-next;if (p1-no=num) if (p1=head) head=head-next; else p2-next=p1-next; free(p1); printf(delete success!n); else printf(not foundn);/这一块是对应原来的循环条件return head;/用递归反向输出链表void output(struct student *head)if (head-next!=NULL) output(head-next); printf(%5d, head-no); /用递归(recursion)正向输出链表void output1(struct student *head)if (head!=NULL) printf(%5d, head-no); output1(head-next); main()struct student *head,*head1;int num;head=create();output1(head);/print(head);p

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论