結構體用於map,set時要重載運算符

#include<iostream> #include<set> using namespace std; struct P { int entry; int time; bool operator<(const P &b)const { return (this->entry<b.entry); } }; int main() { while(!cin.eof())
相關文章
相關標籤/搜索