2109. Adding Spaces to a String - Detailed Explanation
Problem Statement
You are given a string s and an array of integers spaces. The array spaces contains indices (in strictly increasing order) where you need to insert a single space into s. In other words, for each index in spaces, you should insert a space character before the character at that index in the original string.
Return the modified string after all the spaces have been inserted.
Example 1
- Input:
- s =
"LeetcodeHelpsMeLearn"
- spaces =
[8, 13, 15]
- s =
- Explanation:
- The characters at indices 8, 13, and 15 in the original string are where spaces must be inserted.
- After inserting spaces:
- Before index 8:
"Leetcode"
becomes"Leetcode "
- Before index 13:
"Helps"
becomes"Helps "
- Before index 15:
"MeLearn"
becomes"Me Learn"
- Before index 8:
- The resulting string is:
"Leetcode Helps Me Learn"
.
- Output:
"Leetcode Helps Me Learn"
Example 2
- Input:
- s =
"spacing"
- spaces =
[1, 3, 5]
- s =
- Explanation:
- Insert a space before the character at index 1, then at index 3, and then at index 5 of the original string.
- The resulting string becomes:
"s pa c ing"
(visualized as characters with spaces inserted).
- Output:
"s pa c ing"
Constraints
- 1 ≤ s.length ≤ 10⁵
- 1 ≤ spaces.length ≤ s.length
- 0 ≤ spaces[i] < s.length
- All values in spaces are unique and given in increasing order.
Hints
-
Two-Pointer Technique:
- Use one pointer to iterate over the string s and another pointer to track the current index in the spaces array.
- As you build the resulting string, whenever the current index in s matches the next index in spaces, insert a space and move to the next index in spaces.
-
String Building:
- Since repeatedly concatenating strings is inefficient, consider building the result using a list (in Python) or a
StringBuilder
(in Java) and then converting it to a string.
- Since repeatedly concatenating strings is inefficient, consider building the result using a list (in Python) or a
-
Edge Cases:
- Make sure to process the entire string even if you run out of indices in spaces.
Approach 1: Two-Pointer Iteration
Explanation
-
Initialization:
- Create a pointer
i
for iterating over the string s. - Create a pointer
j
for the spaces array. - Use a list (or similar structure) to accumulate characters and spaces.
- Create a pointer
-
Iterate Over the String:
- For each character at index
i
in s, check ifi
is equal to the current index in spaces (i.e.spaces[j]
). - If it is, append a space to your result and move the spaces pointer (
j++
). - Append the current character to your result.
- Continue this until you have processed all characters in s.
- For each character at index
-
Finalize the Result:
- Join the accumulated characters into the final string and return it.
This approach processes the string in a single pass, yielding a time complexity of O(n) where n is the length of the string.
Code Solutions
Python Code
Java Code
Complexity Analysis
-
Time Complexity:
The solution makes a single pass through the string s (O(n)) and at most one pass through the spaces array (O(m)), resulting in an overall complexity of O(n + m). Given that m ≤ n, it simplifies to O(n). -
Space Complexity:
We use a list (orStringBuilder
) to accumulate characters. In the worst case, the extra space is O(n + m), which is also O(n) since m ≤ n.
Step-by-Step Walkthrough
Consider s = "LeetcodeHelpsMeLearn" and spaces = [8, 13, 15]:
-
Initialization:
result = []
j = 0
- Process characters from index
i = 0
toi = len(s) - 1
.
-
Iteration:
- For
i = 0
to7
, no space insertion since none of these indices matchspaces[0]
(which is 8).
→ Append characters"L"
,"e"
,"e"
,"t"
,"c"
,"o"
,"d"
,"e"
. - At
i = 8
, it matchesspaces[0]
(8), so append a space, then the character at index 8. - Continue similarly for
i = 13
andi = 15
, where spaces are inserted.
- For
-
Finalization:
- The list
result
accumulates:"Leetcode" + " " + "Helps" + " " + "Me" + " " + "Learn"
. - Join the list into a single string and return it.
- The list
Common Pitfalls
-
Off-by-One Errors:
Ensure that the space is inserted before the character at the given index. The indices in spaces refer to positions in the original string without considering any previously inserted spaces. -
Inefficient String Concatenation:
Directly concatenating strings in a loop can be inefficient in some languages. Using a list (Python) orStringBuilder
(Java) is recommended. -
Boundary Conditions:
Be careful to handle cases when spaces is empty or when the last character in s is at an index not specified by spaces.
Alternative Approaches and Related Problems
-
Direct Simulation:
You could simulate insertion by slicing the string at each index given in spaces and then joining the parts with spaces. However, this method may involve extra string copying and is less efficient. -
Related Problems:
- String Manipulation: Problems where you modify a string based on given indices.
- Insert Operations: Problems involving inserting characters into strings or arrays efficiently.
GET YOUR FREE
Coding Questions Catalog
