R.XT 发表于 2020-8-17 15:13:43

关于单链表的问题

为什么这个while循环只执行了一次就退出了?
源代码:
#include <stdio.h>
#include <stdlib.h>
#define Max 128

struct Stu
{
        int ID;
        int score;
        char name;
        struct Stu* next;
};
void input(struct Stu* stu);
void input(struct Stu* stu)
{
        printf("请输入学生的编号:");
        scanf("%d",stu->ID);
        getchar();
        printf("请输入学生的姓名:");
        scanf("%s",stu->name);
        getchar();
        printf("请输入学生的成绩:");
        scanf("%d",stu->score);
}
void Add(struct Stu** school);
void Add(struct Stu** school)
{
        struct Stu* stu,*temp;
        stu = (struct Stu*)malloc(sizeof(struct Stu));
        if(stu == NULL)
        {
                fputs("内存分配失败!\n",stderr);
                exit(1);
        }
        input(stu);
        if(*school == NULL)
        {
                *school = stu;
                stu->next = NULL;
        }
        else
        {
                temp = *school;
                *school = stu;
                stu->next = temp;
        }
}
void print(struct Stu* head);
void print(struct Stu* head)
{
        struct Stu* stu;
        int count = 1;
        stu = head;
        while(stu != NULL)
        {
                printf("%d:学生的ID为:%d,学生的姓名为:%s,学生的分数为:%d\n",count,stu->ID,stu->name,stu->score);
                count++;
                stu = stu->next;
        }
}
void close(struct Stu** school);
void close(struct Stu** school)
{
        struct Stu* temp;
        while(*school != NULL)
        {
                temp = *school;
                *school = (*school)->next;
                free(temp);
        }
}
int main(void)
{
        struct Stu* head = NULL;
        int ch;
        while(1)
        {
                printf("是否录入数据(Y/N):");
                do
                {
                        ch = getchar();
                }while(ch != 'Y' && ch != 'N');
                if(ch == 'Y')
                {
                        Add(&head);
                }
                else
                {
                        break;
                }
                print(head);
                close(&head);
        }
        return 0;
}

sunrise085 发表于 2020-8-17 15:29:58

程序的问题在input函数中
学生编号和学生成绩都是int类型,但是scanf的时候,后面没有写&

应该是
scanf("%d",&stu->ID);
scanf("%d",&stu->score);

另外你在while(1)中调用了close函数,若多次输入数据,那也只能显示最后一次输入的数据,前面的都被你free释放掉了

zltzlt 发表于 2020-8-17 15:30:33

scanf() 需要加上取址符

#include <stdio.h>
#include <stdlib.h>
#define Max 128

struct Stu
{
    int ID;
    int score;
    char name;
    struct Stu *next;
};
void input(struct Stu *stu);
void input(struct Stu *stu)
{
    printf("请输入学生的编号:");
    scanf("%d", &stu->ID);
    getchar();
    printf("请输入学生的姓名:");
    scanf("%s", stu->name);
    getchar();
    printf("请输入学生的成绩:");
    scanf("%d", &stu->score);
}
void Add(struct Stu **school);
void Add(struct Stu **school)
{
    struct Stu *stu, *temp;
    stu = (struct Stu *)malloc(sizeof(struct Stu));
    if (stu == NULL)
    {
      fputs("内存分配失败!\n", stderr);
      exit(1);
    }
    input(stu);
    if (*school == NULL)
    {
      *school = stu;
      stu->next = NULL;
    }
    else
    {
      temp = *school;
      *school = stu;
      stu->next = temp;
    }
}
void print(struct Stu *head);
void print(struct Stu *head)
{
    struct Stu *stu;
    int count = 1;
    stu = head;
    while (stu != NULL)
    {
      printf("%d:学生的ID为:%d,学生的姓名为:%s,学生的分数为:%d\n", count, stu->ID, stu->name, stu->score);
      count++;
      stu = stu->next;
    }
}
void close(struct Stu **school);
void close(struct Stu **school)
{
    struct Stu *temp;
    while (*school != NULL)
    {
      temp = *school;
      *school = (*school)->next;
      free(temp);
    }
}
int main(void)
{
    struct Stu *head = NULL;
    int ch;
    while (1)
    {
      printf("是否录入数据(Y/N):");
      do
      {
            ch = getchar();
      } while (ch != 'Y' && ch != 'N');
      if (ch == 'Y')
      {
            Add(&head);
      }
      else
      {
            break;
      }
      printf("1");
      print(head);
      close(&head);
    }
    return 0;
}

R.XT 发表于 2020-8-17 21:12:41

sunrise085 发表于 2020-8-17 15:29
程序的问题在input函数中
学生编号和学生成绩都是int类型,但是scanf的时候,后面没有写&



谢谢,但是还是不明白取址符为什么会影响到while循环...

R.XT 发表于 2020-8-17 21:15:52

zltzlt 发表于 2020-8-17 15:30
scanf() 需要加上取址符

谢谢

R.XT 发表于 2020-8-17 21:17:54

sunrise085 发表于 2020-8-17 15:29
程序的问题在input函数中
学生编号和学生成绩都是int类型,但是scanf的时候,后面没有写&



哈哈,我都没注意到我的print和close在while里面,写的时候太粗心了,对单链表这块知识理解的不是很好
页: [1]
查看完整版本: 关于单链表的问题