数据结构c++绪论题目
1.有100个学生,每个学生有学号,姓名,平均成绩,采用什么样的结构最方便,写出这些结构?typedef struct{int num; char name[8]; float score; }node; node student[100];2.设计一数据结构,用来表示某一银行储户的基本信息:账号,姓名,开户年月日,储蓄类型,存入累加数,利息,账面总数。struct node{int year,monthmday;}typedef struct{int num;char name[