austinxu_ 2019-10-17 22:23 采纳率: 50%
浏览 465

关于struct结构体的问题,程序运行到一半就卡死了

#include
#include
#include

#define LEN sizeof(struct student)

struct student *creat();
struct student *del(struct student *head,int num);
void print(struct student *head);

struct student
{
int num;
float score;
struct student *next;
};

int n;

void main()
{
struct student *stu, *p;
int n;

stu = creat();
p = stu;
print(p);

printf("Please enter the num you want to delete:");
scanf("%d",&n);
print( del(p,n) );

printf("\n\n");

}

struct student *creat()
{
struct student *head;
struct student *p1, *p2;

p1 = p2 = (struct student *)malloc(LEN);

printf("Please enter the num:");
scanf("%d",&p1->num);
printf("Please enter the score:");
scanf("%f",&p1->score);

head = NULL;
n = 0;

while( p1->num )
{
    n++;
    if(n==1)
    {
        head = p1;
    }
    else
    {
        p1 = p2->next;
    }
    p1 = p2;
    p1 = (struct student *)malloc(LEN);

    printf("Please enter the num:");
    scanf("%d",&p1->num);
    printf("Please enter the score:");
    scanf("%f",&p1->score);
}
return head;

}

void print(struct student *head)
{
struct student *p;
p = head;
if(head)
{
printf("There are %d records!\n",n);
do
{
printf("学号为 %d 的成绩是: %f\n",p->num,p->score);
p = p->next;
}while(p);
}
}

struct student *del(struct student *head,int num)
{
struct student *p1, *p2;

if( NULL == head )
{
    printf("This list is null!\n");
    goto END;
}

p1 = head;
while(p1->num!=num && p1->next!=NULL)
{
    p2 = p1;
    p1 = p1->next;
}
if( num == p1->num )
{
    if( p1==head )
    {
        head = p1->next;
    }
    else
    {
        p2->next = p1->next;
    }

    printf("\nDelete No: %d succeed!\n",num);
    n = n-1;
}
else
{
    printf("%d not been found!\n",num);
}

END:
return head;
}

  • 写回答

1条回答

  • threenewbee 2019-10-18 09:50
    关注

    while( p1->num )
    这里是死循环,因为函数内没有改变num或者重新输入的逻辑

    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料