文章
27
粉丝
0
获赞
125
访问
6.7k
#include<bits/stdc++.h>
using namespace std;
typedef struct record {
string name;
string stime;
string ttime;
}record;
record r[10001];
bool compare1(record r1, record r2) {
string s1 = r1.stime;
string s2 = r2.stime;
vector<int> t1;;
vector<int> t2;
stringstream ss1(s1);
string num;
while(getline(ss1, num, ':')) {
t1.push_back(stoi(num));
}
stringstream ss2(s2);
while(getline(ss2, num, ':')) {
t2.push_back(stoi(num));
}
if(t1[0] < t2[0]) return 1;
else if(t1[0] == t2[0]) {
if(t1[1] < t2[1]) return...
登录后发布评论
看看这个:https://noobdream.com/DreamJudge/Issue/code/651560/