鱼C论坛

 找回密码
 立即注册
查看: 880|回复: 4

[已解决]C语言

[复制链接]
发表于 2020-4-16 16:44:05 | 显示全部楼层 |阅读模式

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

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

x
#include<stdio.h>
#include<stdlib.h>

struct stud_node
{
    int num;
    char name[20];
    int grade;
    struct stud_node *next;
};

struct stud_node *Creat_Stud_Doc();
struct stud_node * InsertDoc(struct stud_node *head,struct stud_node *p);


int main()
{
    int choice;
    struct stud_node *head;


    do
    {
        printf("请输入您要执行的操作:");
        scanf("%d",&choice);
        switch(choice)
        {
        case 1:
            head = Creat_Stud_Doc();
            break;
        }
    }while(choice!=0);
}

struct stud_node *Creat_Stud_Doc()
{
    struct stud_node *head,*p;
    int size;
    int num;
    char name[20];
    int grade;
    size = sizeof(struct stud_node);
    printf("请输入学生信息:");
    scanf("%d%s%d",&num,name,&grade);
    head = NULL;
    while(num != 0)
    {
        p = (struct stud_node *)malloc(size);
        p ->num = num;
        strcpy(p ->num,num);
        p ->grade = grade;
        head = InsertDoc(head,p);
        scanf("%d%s%d",&num,name,&grade);
    }
    return head;

};

struct stud_node *InsertDoc(struct stud_node *head, struct stud_node *p)
{
    struct stud_node *str,*str1,*str2;

    str = p;
    str2 = head;

    if(head == NULL)
    {
        head = str;
        head ->next = NULL;
    }
    else
    {
        while((str ->num > str2 ->num) && (str2 ->next != NULL))
        {
            str1 = str2;
            str2 = str2 ->next;
        }
        if(str ->num <= str2 ->num)
        {
            if(str2 == head)
            {
                head = str;
            }
            else
            {
                str1->next = str;
            }
            str->next ->str2;
        }
        else
        {
            str2 = str;
            str2->next = NULL;
        }
    }

    return head;
};


写的链表增加和插入,但是编译出错,大神帮忙看一下哪里出错?
最佳答案
2020-4-16 16:54:50
第50行,strcpy函数需要include一个库文件string.h
另外,该函数用于字符串复制,你应该是打错了,估计你是想把name复制给p->name

第88行,赋值运算符=写错了,写成  ->  了

我只看了编译错误,没有逻辑运行是否正确

这些应该能够在编译给出的错误提示中看出来啊。看不懂编译的错误提示?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-16 16:54:50 | 显示全部楼层    本楼为最佳答案   
第50行,strcpy函数需要include一个库文件string.h
另外,该函数用于字符串复制,你应该是打错了,估计你是想把name复制给p->name

第88行,赋值运算符=写错了,写成  ->  了

我只看了编译错误,没有逻辑运行是否正确

这些应该能够在编译给出的错误提示中看出来啊。看不懂编译的错误提示?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-16 17:36:16 | 显示全部楼层
sunrise085 发表于 2020-4-16 16:54
第50行,strcpy函数需要include一个库文件string.h
另外,该函数用于字符串复制,你应该是打错了,估计你 ...

gcc怎么看错误提示?一般用他就只给出错误的大概位置。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-16 17:39:03 | 显示全部楼层
老牛来学习 发表于 2020-4-16 17:36
gcc怎么看错误提示?一般用他就只给出错误的大概位置。。。

呃,好吧。

若是条件允许,可以换一个编译器,对于初学者能看编译错误很重要。
若是不想换,就当我没说。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-16 17:41:01 | 显示全部楼层
sunrise085 发表于 2020-4-16 17:39
呃,好吧。

若是条件允许,可以换一个编译器,对于初学者能看编译错误很重要。

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

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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