摘要:
// TimerTest.cpp : Using STL functions//#include "stdafx.h"#include <iostream>#include <string>#include <vector>#include <algorithm>using namespace std;struct Review{ string title ; int rating ;};bool operator<(const Review &r1,const Review &r2);bool wors 阅读全文