摘要: #include <iostream> #include <iomanip> cout << setfill(0)<< setw(2) << endl; 阅读全文
posted @ 2016-08-24 21:38 山涧的水 阅读(120) 评论(0) 推荐(0)
摘要: #include <map> struct key { std::string group; std::string user; inline void clear() { group.clear(); user.clear(); } inline std::string buildKey() { 阅读全文
posted @ 2016-08-24 21:35 山涧的水 阅读(110) 评论(0) 推荐(0)
摘要: #include <vector> #include <algorithm> typedef std::vector<std::string> StringVec; StringVec fruit; fruit.clear(); fruit.push_back("appale"); fruit.pu 阅读全文
posted @ 2016-08-24 21:09 山涧的水 阅读(126) 评论(0) 推荐(0)