-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path151_Reverse_Words_in_a_String.cpp
69 lines (63 loc) · 1.58 KB
/
151_Reverse_Words_in_a_String.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <iostream>
#include <memory>
using namespace std;
class Solution {
public:
string reverseWords(string s) {
std::string output;
output.reserve(s.size());
int outputIndex = 0;
int inputIndex = s.size() - 1;
int endIndex = 0;
int startIndex = 0;
bool hasLast = false;
while(true)
{
endIndex = findNextNoneSpacePos(s, inputIndex);
if(endIndex >= 0)
{
if(hasLast)
{
output[outputIndex++] = ' ';
}
startIndex = findNextSpacePos(s, endIndex - 1);
memcpy((void *) (output.data() + outputIndex), s.data() + startIndex + 1, endIndex - startIndex);
outputIndex += (endIndex - startIndex);
inputIndex = startIndex - 1;
hasLast = true;
}
else
{
break;
}
}
output[outputIndex] = '\0';
return output;
}
int findNextSpacePos(string const& s, int index)
{
for(int i = index; i >= 0; i--)
{
if(s[i] == ' ')
{
return i;
}
}
return -1;
}
int findNextNoneSpacePos(string const& s, int index)
{
for(int i = index; i >= 0; i--)
{
if(s[i] != ' ')
{
return i;
}
}
return -1;
}
};
int main()
{
std::cout << Solution().reverseWords("a good example").c_str() << std::endl;
}