- 1、本文档共4页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
C语言数据结构单链表
单链表的创建,销毁,删除元素,及插入元素
#includestdio.h
#includestdlib.h
#includemalloc.h
struct node
{
int data;
struct node *next;
};
struct node *creat()//创建链表
{
struct node *p,*q,*head;
int i=1;
p=head=(struct node *)malloc(sizeof(struct node));
printf(请输入第%d个数字,i);
scanf(%d,p-data);
head=p;
while(p-data!=0i10)//程序编写时为了快速创建链表以检验其他功能,所以设定链表元素为自动输入
{
q=(struct node *)malloc(sizeof(struct node));
i++;
printf(请输入第%d个数字\n,i);
// scanf(%d,q-data);
q-data=i;
p-next=q;
p=q;
}
p-next=NULL;
p=head;
while(p!=NULL)
{
printf(%d\n,p-data);
p=p-next;
}
return head;
}
struct node *destroy(head)//链表的销毁
{
struct node *p,*s;
p=(struct node *)malloc(sizeof(struct node));
p=head;
printf(输出之前创建的链表\n);
while(p!=NULL)//在销毁前确认链表的各个元素都存在,并输出一次
{
printf(%d\n,p-data);
p=p-next;
}
p=head;
while(p!=NULL)//销毁元素
{
s=p-next;
p-data=NULL;
p-next =NULL;
p=s;
}
p=head;
while(p!=NULL)//检验链表是否还存在,若存在,就会输出其值
{
printf(%d\n,p-data);
p=p-next;
}
return head;
}
struct node *deletee(head)//删除元素
{
struct node *p,*s;
int i;
p=(struct node *)malloc(sizeof(struct node));
printf(输出你要删除的元素值__);
scanf(%d,i);
p=head;
while(p!=NULLp-next-data!=i)//找出该元素所在的位置
{
p=p-next;
}
s=p-next;
p-next=s-next;
p=head;
while(p!=NULL)//检验该元素是否还存在,若存在,就会输出其值
{
printf(%d\n,p-data);
p=p-next;
}
return head;
}
struct node *insert(head)//插入功能
{
struct node *p,*s,*r;
int g,h;
r=s=p=(struct node *)malloc(sizeof(struct node));
// r=(struct node *)malloc(sizeof(struct node));
printf(插入元素前面一个元素是-);
scanf(%d,g);
printf(要插入元素是-);
scanf(%d,h);
r-data=h;
printf(检验\n);
p=head;
while(p!=NULLp-data!=g)//找出插入的地址
{
p=p-next;
}
s=p-next;
p-next=r;
r-next=s;
printf(检验\n);
p=head;
while(p!=NULL)//检验
{
printf(%d\n,p-data);
p=p-next;
}
return head;
}
int main()
{ struct node *head;
int chose;
printf(创建链表\n);
head=creat();
printf(选择功能:\n1,销毁。\n2,删除。\n3,插入。\n您选择的是_);
scanf(%d,chose);
switch(chose)//功能菜单
{
case 1:head=destroy(head);
case 2:
文档评论(0)