摘要: class Solution { public: // 字符串分割 vector<string> spltstr(string s){ vector<string> res; string tmp; for(auto c: s){ if(c!=' ') tmp = tmp + c; else if( 阅读全文
posted @ 2021-09-25 15:09 三一一一317 阅读(61) 评论(0) 推荐(0)