请使用VC6或使用【答题】菜单打开考生文件夹proj3下的工程proj3,其中包含了日期类Date、人员类Person及排序函数sortByAge和主函数main的定义。其中Person的成员函数eomp~eAge的功能是:将当前Person对象和参数Pe

admin2015-06-27  31

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj3下的工程proj3,其中包含了日期类Date、人员类Person及排序函数sortByAge和主函数main的定义。其中Person的成员函数eomp~eAge的功能是:将当前Person对象和参数Person对象进行比较,若前者的年龄大于后者的年龄,则返回一个正数;若前者的年龄小于后者的年龄,则返回一个负数;若年龄相同则返回0。注意,出生日期越大,年龄越小。请编写成员函数compareAge。在main函数中给出了一组测试数据,此时程序的正确输出结果应为:
按年龄排序
排序前:
张三男出生日期:1978年4月20日
王五女出生日期:1965年6月3日
杨六女出生日期:1965年9月5日
李四男出生日期:1973年5月30日
排序后:
张三男出生日期:1978年4月20日
李四男出生日期:1973年5月30日
杨六女出生日期:1965年9月5日
王五女出生日期:1965年6月3日
要求:
补充编制的内容写在“//**********333**********”与“//**********666**********”之间,不得修改程序的其他部分。
注意:程序最后将结果输出到文件out.dat中。输出函数WriteToFile已经编译为obj文件,并且在本程序中调用。
//Person.h
#include
usingnamespacestd;
classDate{//日期类
intyear,month,day;//年、月、日
public:
Date(intyear,intmonth,intday):
year(year),month(month),day(day){}
intgetYear()const{returnyear;}
intgetMonth()const(return
month;}
intgetDay()const{returnday;}
};
classPerson{//人员类
charname[14];//姓名
boolismale;//性别,为true时表示男性
Datebirthdate;//出生日期
public:
Person(char*name,boolismale,Datebirthdate);
constchar*getName()const(re
turnname;}
boolisMale()const{returnismale;}
DategetBirthdate()const{returnbirthdate;}
intcompareAge(constPerson&p)const;
voidshow()const;
};
voidsortByAge(Personps[],intsize);
voidwriteToFile(char*);
}
voidPerson::show()const{
cout<cout<<<(ismale?"男":"女")//显示性别(“男”或“女”)
<<"出生日期:"//显示出生日期
<<<}
voidsortByAge(Personps[],intsize)
{//对人员数组按年龄由小到大的顺序排序
for(inti=0;i采用选择排序算法
intm=i;
for(intj=i+1;jif(ps[j].compareAge(ps[m])<0)
m=j;
if(m>i){
Personp=ps[m],
ps[m]=ps
ps=p;
    }
  }
}
intmain(){
Personstaff[]={
Person("张三",true,Date(1978,4,20)),
Person("王五",false,Date(1965,6,3)),
Person("杨六",false,Date(1965,9,5)),
Person("李四",true,Date(1973,5,30))
};
constintsize=sizeof(staff)/sizeof(staff[0]);
inti;
cout<<"按年龄排序n<for(i=0;i.show();
sortByAge(staff,size);
cout<for(i=0;i
show();
cout<writeToFile("");
return0;
}

选项

答案int n = 0; n = p.birth_date.getYear() - birth_date.getYear(); if (n != 0) return n; n = p.birth_date.getMonth() - birth_date.getMonth(); if (n != 0) return n; return p.birth_date.getDay() - birth_date.getDay();

解析 compareAge函数的功能是比较年龄大小并排序。先比较年,再比较月,最后是比较日。
转载请注明原文地址:https://jikaoti.com/ti/UXXiFFFM
0

最新回复(0)