Solution: Reverse Words in a String
Let's solve the Reverse Words in a String problem using the Two Pointers pattern.
We'll cover the following
Statement
Given a
Constraints:
The sentence contains English uppercase and lowercase letters, digits, and spaces.
sentence.length
The order of the letters within a word is not to be reversed.
Note: The input string may contain leading or trailing spaces or multiple spaces between words. The returned string should only have a single space separating each word. Do not include any extra spaces.
Solution
The essence of this algorithm is to reverse the words in a string by utilizing a two-step method using two pointers, effectively manipulating the string. This approach involves trimming unnecessary whitespace and splitting the string into individual words, then reversing the order of those words in the list using a two pointer technique.
The two pointers, left
and right
, are initialized at the beginning and end of the list, respectively, and gradually move inward as they swap words. This swapping process ensures that the first word is moved to the end, the last word is moved to the beginning, and so on, until all the words are in their correct reverse order. Finally, the reversed list is joined back into a string using single spaces.
Here’s how we can implement the approach above:
We remove any leading or trailing spaces from the input string
sentence
. This ensures that unnecessary whitespace at the beginning and end of the string is eliminated.Next, we split the updated sentence into a list of words and store it in
result
. This method automatically removes multiple spaces between words, ensuring that words are properly separated.We then initialize two pointers:
left
: initially set to, pointing to the first word in result
.right
: pointing to the last word inresult
.
Next, we iterate over
result
until theleft
pointer becomes greater than or equal to theright
pointer.In each iteration, we swap the words at positions
left
andright
to reverse their order.After swapping, we increment
left
byto move to the right and decrement right
byto move to the left. The above process continues until
left
is no longer less thanright
, ensuring that all words are swapped.
The final result is returned, containing words in the correct order with single spaces separating them.
The following illustration shows these steps in detail:
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.