编写程序,实现舞伴问题
编写程序,实现舞伴问题
日期:2013-12-01 19:11:02 人气:3
#include
#include
#include
#define maxsize 100
typedef struct
{
char sex;//'B代表男、G代表女'
char name[10];//存储姓名
}pupil;
typedef struct
{
pupil man[maxsize];
int front;
int rear;
}manqueue;
typedef struct
{
pupil