- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
单链表的基本操作实验报告
课程名称 数据结构与算法 成绩评定
实验项目名称 单链表的基本操作 指导教师
学生姓名 沈丽桃 学号 专业 10教育技术
实验项目类型 验证 实验地点 科B305 实验时间年 月 日实验目的:实现线性链表的创建、查找、插入、删除与输出。基本原理:单链表的基本操作 “Please option:1:Insert 2:Locate 3:Delete\n”);
printf(“Please choose:”);
scanf(“%d”,choice);
switch(choice)
case 1:
printf(“Please input a node:”);
scanf(“%d”,x);
p=head;
INSERT(x,p);
for(p=head;p!=NULL;p=p-next)
printf(“%d”,p-element);
printf(“\n”);
break;
case 2:
printf(“Please input the data you want to locate:”);
scanf(“%d”,x);
p=head;
LOCATE(x,p);
break;
case 3:
printf(“Please input the data you want to delete:”);
scanf(“%d”,x);
DELETE(x,p);
for(p=head;p!=NULL;p=p-next)
printf(“%d”,p-next);
printf(“\n”);
break;
}
void INSERT(int x,struct celltype*p)
{
struct celltype*t,*q;
q=(struct celltype*)malloc(sizeof(struct celltype));
q-next=x;
while((xp-element)(p!=NULL))
{
t=p;
p=p-next;
}
if((xp-element)(p-next!=NULL))
{
p-next=q;
q-next=NULL;
}
else
{
q-next=p;
t-next=q;
}
}
void LOCATE(int x,struct celltype*p)
{
while(p-next!=NULL)
if(p-next-element==x)
printf(“the number %d is in %d\n”,x,p);
else printf(“the number not exist!\n”);
}
void DELETE(int x,struct celltype*p)
{
while((p-element!=x)(p-next!=NULL))
{
t=p;
p=p-next;
}
if(p-element==x)
t-next=p-next
}
error C2018:unknown character ’Oxal’
error C2065:’Please’:undeclared identifier
error C4024:’printf’:different types for formal and actual parameter 1
error C4047:’function’:’const*differs in levers of indirection from ’int’
error C2146:syntaxerror:missing’)’before identifier’option’
error C2017:illegal escape sequence
error C2059:syntax error:’)’
error C2143:syntax error:missing’)’before’%’
出现了很多错误,主要是因为printf里的一对双引号不是英文状态下的。将双引号改好后,错误消失,输入时应注意细节,最好直接在编译环境下输程序
error C2043:illegal break
error C2043:illegal case
文档评论(0)