212
社区成员
/*本题要求实现两个函数,一个将输入的学生成绩组织成单向链表;另一个将成绩低于某分数线的学生结点从链表中删除。
函数接口定义:
struct stud_node *createlist();
struct stud_node *deletelist( struct stud_node *head, int min_score );
函数createlist利用scanf从输入中获取学生的信息,将其组织成单向链表,并返回链表头指针。链表节点结构定义如下:
struct stud_node {
int num; 学号
char name[20]; 姓名
int score; 成绩
struct stud_node *next; 指向下个结点的指针
};
输入为若干个学生的信息(学号、姓名、成绩),当输入学号为0时结束。
函数deletelist从以head为头指针的链表中删除成绩低于min_score的学生,并返回结果链表的头指针。*/
#include <stdio.h>
#include <stdlib.h>
struct stud_node {
int num;
char name[20];
int score;
struct stud_node *next;
};
struct stud_node *createlist();
struct stud_node *deletelist( struct stud_node *head, int min_score );
int main()
{
int min_score;
struct stud_node *p, *head = NULL;
head = createlist();
scanf("%d", &min_score);
head = deletelist(head, min_score);
for ( p = head; p != NULL; p = p->next )
printf("%d %s %d\n", p->num, p->name, p->score);
return 0;
}
/* 你的代码将被嵌在这里 */
struct stud_node *createlist() //尾插法
{
struct stud_node *head,*tail,*p;
head=NULL;
tail=NULL;
int num_;
scanf("%d",&num_);
while(num_!=0)
{
p=(struct stud_node*)malloc(sizeof(struct stud_node));
p->num=num_;
scanf("%s %d",p->name,&p->score);
if(head==NULL)
{
head=p;
p->next=NULL;
}
else //为什么这里可以直接用else ?
{ //因为,我把第一个结点放在head里之后,直接做的是把新的结点放在尾结点里
tail->next=p; //我的新结点要么放在head,要么放在tail.
p->next=NULL;
}
tail=p; //保证了新插入的结点为尾结点
scanf("%d",&num_);
}
return head;
}
struct stud_node *deletelist( struct stud_node *head, int min_score ) //链表的删除
{
struct stud_node *p,*t; //一个用于临时操作,一个用于记录上一个结点
//要把下一个结点的地址放在上一个结点的next
if(head==NULL) //如果是空链表,直接返回NULL
{return NULL;}
if(head!=NULL&&head->score<min_score) //因为第一个结点的地址在head里(比较特殊)
{
p=head;
head=head->next;
free(p);
}
t=head; //其他的结点的地址在上一个结点的next里
p=head->next;
while(p!=NULL) //还没到最后一个
{
if(p->score<min_score)
{
t->next=p->next;
free(p);
}
else {t=p;}
p=t->next; //不用p=p->next 是因为p可能被free掉了
}
return head;
}