数据结构 运动会分数统计

时间:2012-12-26 03:43:04
【文件属性】:

文件名称:数据结构 运动会分数统计

文件大小:575KB

文件格式:DOC

更新时间:2012-12-26 03:43:04

数据结构 运动会分数统计

#define MAX 50 //#define NULL 0 typedef struct node1{ int school; /*学校编号*/ int record; /*项目成绩*/ struct node1 *next; /*链域*/ }Schools; typedef struct { int item; /*项目编号*/ Schools *firstschool; /*链域指向链表中第一个结点*/ }ITEM; typedef struct { int z; /* 项目总数 */ ITEM a[MAX]; }ALLitems; typedef struct node2 { int item; /*该学校获奖的项目*/ int record; /*项目成绩*/ struct node2 *next; /*链域*/ }Items; typedef struct { int school; /*学校编号*/ int score; /*学校总分*/ int boys; /*男团体总分*/ int girls; /*女团体总分*/ Items *firstitem; /*链域指向链表中第一个获奖项目的结点*/ }SCHNode; typedef struct { int n; /* 学校总数 */ SCHNode b[MAX]; }ALLNode; ALLitems *g1; ALLNode *g2;


网友评论