01. Reverse Words in a String III
The problem can be found at the following link: Question Link
My Approach
Initialize two variables,
start
andend
, both initially set to 0. These will be used to keep track of the current word boundaries in the string.Enter a while loop that continues until the
start
pointer reaches the end of the input strings
.Inside the outer while loop, enter another while loop that continues until either the
end
pointer reaches the end of the string or encounters a space character (' ').Inside the inner while loop, the
end
pointer is incremented until it either reaches the end of the string or finds a space character, effectively identifying the end of the current word.Once the inner while loop completes, it means we have identified a word in the string. At this point, we use the
reverse
function from the C++ Standard Library to reverse the characters in the identified word. Thereverse
function takes two iterators,s.begin() + start
pointing to the beginning of the word ands.begin() + end
pointing to the end of the word, and reverses the characters in that range.After reversing the word, we update the
start
pointer toend + 1
, which sets it to the beginning of the next word (or the character after the space).We also update the
end
pointer to match thestart
pointer, effectively resetting it for the next word.
Time and Auxiliary Space Complexity
Time Complexity:
O(n)
Auxiliary Space Complexity:
O(1)
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the rishabhv12/Daily-Leetcode-Solution repository.
Last updated