-
Notifications
You must be signed in to change notification settings - Fork 3
/
reverse_words.cpp
42 lines (38 loc) · 1.08 KB
/
reverse_words.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
/*
* Given a string, you need to reverse the order of characters in each word within a sentence
* while still preserving whitespace and initial word order.
*
* Example:
* Input: She loves chocolate
* Output: ehs sevol etalocohc
*
* Approach:
* Use two indices to figure out non-whitespace characters, and reverse
* the portion.
*/
#include <iostream>
#include <string>
std::string reverse_words(std::string& sentence)
{
for(int i = 0; i < sentence.length(); ++i) {
if (sentence[i] != ' ') {
int j = i;
// let j find the end of non-whitespace portion
while (j < sentence.length() &&
sentence[j] != ' ') {
j++;
}
std::reverse(sentence.begin() + i, sentence.begin() + j);
// reset i to next word.
i = j - 1;
}
}
return sentence;
}
int main()
{
std::string sentence{"She loves chocolate"};
std::cout << "Input: " << sentence << std::endl;
std::cout << "Output: " << reverse_words(sentence) << std::endl;
return 0;
}