当前位置: 代码迷 >> C语言 >> 学生成绩管理
  详细解决方案

学生成绩管理

热度:423   发布时间:2006-08-04 02:41:41.0
学生成绩管理

#include<malloc.h>
#include<stdio.h>
#define LEN sizeof(struct student)
struct student
{
long num;
float English;
float math;
float chinese;
struct student *next;
};
int n;
struct student *creat(void )
{
struct student *head;
struct student *p1,*p2;
n=0;
p1=p2=(struct student *)malloc(LEN);
scanf("%1d,%f,%f,%f,%f",&p1->num,&p1->English,&p1->math,&p1->chinese);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1)head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student *)malloc(LEN);
scanf("%1d,%f,%f,%f,%f",&p1->num,&p1->English,&p1->math,&p1->chinese);
}
p2->next=NULL;
return head;
}
struct student *del(struct student *head,long num)
{
struct student *p1,*p2;
if(head==NULL){printf("\n没有数据!\n");goto end;}
p1=head;
while(num!=p1->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("删除:%d\n",num);
n=n-1;
}
else printf("%1d 没有被找到!\n",num);
end: return head;
}
struct student *insert(struct student *head,struct student *stud)
{
struct student *p0,*p1,*p2;
p1=head;
p0=stud;
if(head==NULL)
{
head=p0;p0->next=NULL;}
else
{while((p0->num>p1->num)&&(p1->next!=NULL))
{p2=p1;
p1=p1->next;
}
if(p0->num<=p1->num)
{
if(head==p1)head=p0;

else p2->next=p0;
p0->next=p1;}
else
{
p1->next=p0;p0->next=NULL;
}}
n=n+1;
return(head);
}
void print(struct student *head)
{
struct student *p;
printf("\n现在 ,这些%d记录是:\n",n);
p=head;
if(head!=NULL)
do
{printf("%1d,%.1f,%.1f,%.1f\n",p->num,p->English,p->math,p->chinese);
p=p->next;
}while(p!=NULL);
}
main()
{
struct student *head,*stu;
long del_num;
int x;
printf("选择1 请输入数据,选择2删除数据\n");
printf("选择3 插入数据 ,选择4退出\n");
scanf("%d",&x);

do
{
switch(x)
{
case 1:
printf("输入数据:--输入0,0,0,0表示终止.\n");

head=creat();break;
case 2:

printf("\n输入删除数据的学号:--输入0表示终止\n");
scanf("%1d",&del_num);
while(del_num!=0)
{
head=del(head,del_num);
print(head);
printf("\n输入删除数据的学号:--输入0表示终止\n");
scanf("%1d",&del_num);
}break;
case 3:
printf("\n插入数据:--输入0,0,0,0表示终止.\n");
stu=(struct student *)malloc(LEN);
scanf("%1d,%f,%f,%f,%f",&stu->num,&stu->English,&stu->math,&stu->chinese);
while(stu->num!=0)
{
head=insert(head,stu);
print(head);
printf("\n插入数据:--输入0,0,0,0表示终止.\n");
stu=(struct student *)malloc(LEN);
scanf("%1d,%f,%f,%f,%f",&stu->num,&stu->English,&stu->math,&stu->chinese);
}break;
default:printf("ERROR!\n");
}
printf("请选择功能:--2(删除)--3(插入)--4(退出)\n");
scanf("%d",&x);
}while(x!=4);

}

搜索更多相关的解决方案: student  struct  float  num  学生  

----------------解决方案--------------------------------------------------------

请高手指点


----------------解决方案--------------------------------------------------------
大家可以在我的程序上修改!~添加读写文件的功能!
----------------解决方案--------------------------------------------------------
http://man.chinaunix.net/develop/c&c++/c/c.htm

----------------解决方案--------------------------------------------------------
1。带头结点的单链表,在做插入和删除等操作时,可以不用返回头结点,直接用void就可以了。所以带头结点的单链表要方便。(个人爱好)
2。加点查找和修改功能吧。
3。不必弄一个全局变量n来保存结点个数。要用的时候,遍历一次就可以了。
4。建单链表时,先判断是否符合条件(num!=0)再分配空间,不要一开始你就给他们赋值。
5。if(n==1)head=p1; 这个可以这样判断if(head==NULL) head=p1;
6。p1=p2=(struct student *)malloc(LEN);请分开来给他们分配空间。
7。分配的空间,你不用了,你要收回空间。
8。如果你的程序风格好点的话,我们也不必看的这么累。

----------------解决方案--------------------------------------------------------
厉害!!
----------------解决方案--------------------------------------------------------
8。如果你的程序风格好点的话,我们也不必看的这么累。
除了这句话!
我很佩服你啊!
请以后多指点!
----------------解决方案--------------------------------------------------------
这句话难道不对吗,我认为要别人看你的程序,首先你的程序要让别人读起来很舒服。

以后共同学习了。

----------------解决方案--------------------------------------------------------
哈哈,这个放到数据结构那里
----------------解决方案--------------------------------------------------------

看起头晕啊


----------------解决方案--------------------------------------------------------
  相关解决方案