码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode - Reverse Words

时间:2014-06-05 03:45:47      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   int   

比起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,布布扣,bubuko.com

Leetcode - Reverse Words

标签:c   class   blog   code   a   int   

原文地址:http://blog.csdn.net/tspatial_thunder/article/details/27128761

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!