上课时删除表链中的问题
#include<stdio.h>#include<malloc.h>
#include<stdlib.h>
#define LEN sizeof(struct student)//结构的大小
struct student *creat(); //创建结构
void print(struct student *head);//结构名称
struct student *del(struct student *head, int num)
struct student //定义结构体
{
int num;
float score;
struct student *next;
};
void main();
{
struct student *stu,*p;
int n;
stu=creat();
p = stu;
print(p);
printf("Please enter the num to delete:\n");
scanf("%d",n);
print(del(p,n));
printf("\n\n");
system("pause");
}
int n;//全局变量
struct student *creat()
{
struct student *head;
struct student *p1,*p2;
p1=p2=(struct student *)malloc(LEN);
printf("please enter the num:\n");
scanf("%d",&p1->num);
printf("please enter the score:\n");
scanf("%f",&p1->score);
head =NULL;
n=0;
while(p1->num)
{
n++;
if(n==1)
{
head=p1;
}
else
{
p2->next=p1;
}
p2=p1;
p1 = (struct student *)malloc(LEN);
printf("please enter the num:\n");
scanf("%d",&p1->num);
printf("please enter the score:\n");
scanf("%f",&p1->score);
}
p2 -> next=NULL;
return head;
}
void print(struct student *head)
{
struct student *p;
printf("there ate %d recods:\n",n);
p = head;
if(head!=0)
{
do
{
printf("学好为%d的同学的成绩为%0.2f.\n",p -> num , p -> score);
p = p -> next;
}while(p != 0);
}
}
struct student *del(struct student *head, int num)
{
struct student *p1,*p2;
if(NULL==head)
{
printf("\nthis is a null!\n");
goto END;
}
p1=head;
while(p1 -> num != num && p1 -> next = NULL)
{
p2 = p1;
p1 = p1 ->next;
}
if(p1 ==num =num)
{
if(p1 == head)
{
head = p1 -> next;
}
else
{
p2 -> next = p1 -> next;
}
printf("\nDelete No: %d succed!\n",num);
n=n-1;
}
else
{
printf("\n%d not found succed!\n",num);
}
END:
return head;
}
按小甲鱼课件上手动输入的,不知道是哪里的问题,程序运行时一堆错误,有些错误感觉莫名其妙的。求大神看下是怎末回事呢
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(19) : error C2085: 'main' : not in formal parameter list
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(93) : error C2084: function 'struct student *__cdecl del(struct student *,int )' already has a body
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(101) : warning C4047: '=' : 'int ' differs in levels of indirection from 'void *'
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(101) : error C2106: '=' : left operand must be l-value
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(106) : warning C4047: '==' : 'struct student *' differs in levels of indirection from 'int '
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(106) : error C2106: '=' : left operand must be l-value
执行 cl.exe 时出错. 本帖最后由 sunrise085 于 2020-4-13 22:09 编辑
错误太多了!!
很明显的几处错误是
1、main函数一开头的括号后面居然有个分号。。。。
2、main函数总scanf后面的n前没有写&
3、删除节点的函数中,while循环后面的if条件中->写成==了
4、print函数中的n是哪儿来的?
其他的还没看出来。 我现在近视 500 多度都能看到 main 函数的括号后面多了一个分号,而你却看不见
你为什么不愿意检查你的代码?你能说你检查不出来吗?你不能
void main(); sunrise085 发表于 2020-4-13 22:02
很明显的两处错误是
1、main函数一开头的括号后面居然有个分号。。。。
2、删除节点的函数中,while循环 ...
main把,去掉后变成这样了
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(19) : error C2085: 'main' : not in formal parameter list
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(19) : error C2143: syntax error : missing ';' before '{'
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(92) : error C2084: function 'struct student *__cdecl del(struct student *,int )' already has a body
而且不懂这句为什么报错:
while(p1 -> num != num && p1 -> next = NULL)
如下:
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(100) : warning C4047: '=' : 'int ' differs in levels of indirection from 'void *'
C:\XSL\c6.0.zuoye\20200412\zizuo(2).c(100) : error C2106: '=' : left operand must be l-value
这个=有问题吗,我看小甲鱼就这样打的代码啊
a1764441928 发表于 2020-4-13 22:10
而且不懂这句为什么报错:
while(p1 -> num != num && p1 -> next = NULL)
如下:
错误帮你找全了。
1、main函数一开头的括号后面居然有个分号。。。。
2、main函数总scanf后面的n前没有写&
3、删除节点的函数中,while循环后面的if条件中->写成==了
4、del函数中while循环条件后半个应该是 p1 -> next != NULL
5、del函数声明那里末尾没写分号
sunrise085 发表于 2020-4-13 22:19
错误帮你找全了。
1、main函数一开头的括号后面居然有个分号。。。。
2、main函数总scanf后面的n前没 ...
谢谢大神,程序可以运行了。 a1764441928 发表于 2020-4-13 22:22
谢谢大神,程序可以运行了。
都是很基础的错误。。。以后细心些! sunrise085 发表于 2020-4-13 22:24
都是很基础的错误。。。以后细心些!
嗯嗯,谢谢
页:
[1]