2021年3月27日

摘要: 头文件<algorithm> 对结构体排序 struct node { string name; string phone; int birth; } a[15]; bool cmp(node x,node y) { return x.birth<y.birth ; //从大到小 } ...... 阅读全文
posted @ 2021-03-27 16:25 白夜just 阅读(77) 评论(0) 推荐(0)

导航