首页 > 代码库 > Leetcode - Reverse Words
Leetcode - Reverse Words
比起POJ弱爆了一题,从后往前扫描一遍,O(n)时间,仅仅要注意各种极端情况就可以。不明确通过率为什么仅仅有13%。
#include<iostream> #include<string> using namespace std; class Solution { public: void reverseWords(string &s) { char* cstr = new char[s.size()+1]; int cc = 0; int revstrC = s.size() - 1; while (revstrC >= 0) { while (revstrC>=0 && s.at(revstrC) == ‘ ‘) { revstrC--; } if (revstrC >= 0)//find the end of a word { int end = revstrC; while (revstrC >= 0 && s.at(revstrC) != ‘ ‘) revstrC--; s.copy(cstr+cc, end-revstrC, revstrC+1); cc = cc + end - revstrC; cstr[cc] = ‘ ‘; cc++; } } cstr[cc-1] = ‘\0‘; s.assign(cstr); } }; int main() { Solution sol; string str = " Hello fwe asg wf vergv "; sol.reverseWords(str); cout << str << endl; }
Leetcode - Reverse Words
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。