文章
14
粉丝
0
获赞
3
访问
976
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <set>
#include <list>
#include <string>
#include <cmath>
#include <stack>
#include <map>
#include <sstream>
#include <queue>
using namespace std;
struct tt {
string s;
int cj;
};
bool com(tt a, tt b) {
if (a.cj == b.cj) {
stringstream ssa(a.s);
stringstream ssb(b.s);
string ayear; string amonth; string adate;
getline(ssa, ayear, '/'); getline(ssa, amonth, '/'); getline(ssa, adate, '/');
string byear; string bmonth; string bdate;
getline(ssb, byear, '/'); getline(ssb, bmonth, '/...
登录后发布评论
暂无评论,来抢沙发