编写程序,实现舞伴问题

日期: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
    A+
热门评论