c数据结构单链表的建立与基本应用_第1页
c数据结构单链表的建立与基本应用_第2页
c数据结构单链表的建立与基本应用_第3页
c数据结构单链表的建立与基本应用_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

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

文档简介

1、#include "stdio.h" #include "stdlib.h"typedef struct nodeint data;struct node *next;Lnode, *Linklist;input(Lnode *p,int n)/ 实现用键盘顺序输入链表数据 Lnode *s;int i,d;printf( " 请输入数据: ");for (i=1;i<= n;i+ )if (i= 1)scanf( "%d" ,&d);p-> data =d;continue ;if (n= 1

2、)break ;scanf( "%d" ,&d);s=(Linklist)malloc( sizeof (Lnode);s-> data =d;p-> next = s;s-> next = NULL;p=s;/ 使当前指针指向链表尾部节点output(Lnode *p,int n)/ 实现输出当前链表所有数据int i=1;printf( " 当前链表的值为: ");while(p-> next != NULL)printf( "%d ",p-> data);p=p-> next;i+ ;

3、if(i= n)当是最后一个节点时,其next已经是空,所以最后一个节点数据无法用while循环写出,所以另用了一个计数器iprintf( "%d" ,p-> data);insert(Lnode *p,int i,int e)实现在第i个元素之后插入新元素 int j=0;Lnode *s;while(p&&j<i-1)p=p-> next; + j; if(!p|j > i- 1)return 0;s=(Linklist)malloc( sizeof (Lnode);s-> data =e;s-> next =p-&g

4、t; next;p -> next =s;return 1;delet(Lnode *p,int i)/实现删除链表中第i+1个元素int j=0;Lnode *q;while(p-> next &&j< i- 1)p=p-> next;+j;if(!(p-> next) |j> i- 1)return 0;q=p-> next;p -> next =q-> next;free(q);return 1;search(Lnode *p,int e,int n)int i=1;while(p-> next != NULL)

5、if (p-> data = e)printf( " 在链表中找到了相同元素 ");break ;p=p-> next;i+ ;if (i= n)if (p-> data = e)printf( " 在链表中找到了相同元素 ");elseprintf( " 在链表中没有寻找到相同元素 ");void main()Lnode *head;int n,i,e;head= (Linklist)malloc( sizeof (Lnode); head-> next =NULL; / 建立空链表头 printf( &qu

6、ot; 请输入链表长度: ");scanf( "%d" ,&n);input(head,n);output(head,n);printf( "n 请输入要在链表的第几个元素之后插入数据: "); scanf( "%d" ,&i);printf( " 请输入要插入的数据: ");scanf( "%d" ,&e);insert(head,i,e);output(head,n +1);printf( "n 请输入要删除链表第几个节点之后的元素: "); scanf( "%d" ,&i);delet(head,i);ou

温馨提示

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

评论

0/150

提交评论