鱼C论坛

 找回密码
 立即注册
查看: 564|回复: 8

[已解决]上课时删除表链中的问题

[复制链接]
发表于 2020-4-13 21:54:40 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#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 时出错.
最佳答案
2020-4-13 22:19:06
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函数声明那里末尾没写分号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-13 22:02:10 | 显示全部楼层
本帖最后由 sunrise085 于 2020-4-13 22:09 编辑

错误太多了!!
很明显的几处错误是
1、main函数一开头的括号后面居然有个分号。。。。
2、main函数总scanf后面的n前没有写&
3、删除节点的函数中,while循环后面的if条件中  ->  写成  ==  了
4、print函数中的n是哪儿来的?
其他的还没看出来。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-13 22:04:49 | 显示全部楼层
我现在近视 500 多度都能看到 main 函数的括号后面多了一个分号,而你却看不见
你为什么不愿意检查你的代码?你能说你检查不出来吗?你不能
void main();
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-13 22:08:06 | 显示全部楼层
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

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-13 22:10:33 | 显示全部楼层
而且不懂这句为什么报错:
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
这个=有问题吗  ,我看小甲鱼就这样打的代码啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-13 22:19:06 | 显示全部楼层    本楼为最佳答案   
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函数声明那里末尾没写分号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-13 22:22:50 | 显示全部楼层
sunrise085 发表于 2020-4-13 22:19
错误帮你找全了。
1、main函数一开头的括号后面居然有个分号。。。。
2、main函数总scanf后面的n前没 ...

谢谢大神,程序可以运行了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-13 22:24:23 | 显示全部楼层
a1764441928 发表于 2020-4-13 22:22
谢谢大神,程序可以运行了。

都是很基础的错误。。。以后细心些!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-13 22:25:01 | 显示全部楼层
sunrise085 发表于 2020-4-13 22:24
都是很基础的错误。。。以后细心些!

嗯嗯,谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表