随笔分类 -  OJ...

摘要:int SplitString(string inputStr, string splitStr, vector &result) { if(inputStr.empty() || splitStr.empty()) return -1; int nCnt = 0; string::size_type nSplit = splitStr.size(); ... 阅读全文
posted @ 2016-03-30 19:19 AIceCream 阅读(136) 评论(0) 推荐(0)
摘要:#include #include #include #include #include using namespace std; bool Compare(const string &a, const string &b) { return ((a+b) > (b+a)); } void GetResult(vector vNums, string &strRlt) {... 阅读全文
posted @ 2016-03-29 21:52 AIceCream 阅读(415) 评论(0) 推荐(0)