HNUST 1395日期排序 sort函数 快速排序


 

1395: 日期排序

时间限制: 1 Sec   内存限制: 128 MB
提交: 157   解决: 104
[ 提交][ 状态][ 讨论版]

题目描述

有一些日期,日期格式为“MM/DD/YYYY”。编程将其按日期大小排列。

输入

输出

样例输入

15/12/1999
10/21/2003
10/22/2003
02/12/2004
11/30/2005
12/31/2005

样例输出

15/12/1999
10/21/2003
10/22/2003
02/12/2004
11/30/2005
12/31/2005
#include 
#include
#include
#include
using namespace std;
struct node
{
    int year;
    int month;
    int day;
}stu[1000];

bool cmp(node x,node y)
{
    if(x.year!=y.year)
        return x.year
//sort函数十分便捷,耗时较少

你可能感兴趣的:(ACM_C++,STL,HNUST,OJ)