题目描述
给你两个字符串 word1
和 word2
。请你从 word1
开始,通过交替添加字母来合并字符串。如果一个字符串比另一个字符串长,就将多出来的字母追加到合并后字符串的末尾。
返回 合并后的字符串 。
示例 1:
1
2
3
4
5
6
| 输入:word1 = "abc", word2 = "pqr"
输出:"apbqcr"
解释:字符串合并情况如下所示:
word1: a b c
word2: p q r
合并后: a p b q c r
|
示例 2:
1
2
3
4
5
6
| 输入:word1 = "ab", word2 = "pqrs"
输出:"apbqrs"
解释:注意,word2 比 word1 长,"rs" 需要追加到合并后字符串的末尾。
word1: a b
word2: p q r s
合并后: a p b q r s
|
示例 3:
1
2
3
4
5
6
| 输入:word1 = "abcd", word2 = "pq"
输出:"apbqcd"
解释:注意,word1 比 word2 长,"cd" 需要追加到合并后字符串的末尾。
word1: a b c d
word2: p q
合并后: a p b q c d
|
提示:
1 <= word1.length, word2.length <= 100
word1
和 word2
由小写英文字母组成
题解
对于这道题,首先可以想到,交替地插入字符即可。这里需要考虑字符串长度不一致应该如何处理。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| class Solution {
public:
string mergeAlternately(string word1, string word2) {
int i{0};
int j{0};
string re;
while (i < word1.size()) {
re.push_back(word1[i++]);
if (j < word2.size()) {
re.push_back(word2[j++]);
}
}
re += word2.substr(j);
return re;
}
};
|
对于 C++,需要注意的一点是,string 的 push_back()
原型是 void push_back(CharT ch);
,即参数是 char 类型。
以上解法相比于官方解法少了一次 if 判断,但也增加了理解难度。可以参考官方的题解:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| class Solution {
public:
string mergeAlternately(string word1, string word2) {
int m = word1.size(), n = word2.size();
int i = 0, j = 0;
string ans;
while (i < m || j < n) {
if (i < m) {
ans.push_back(word1[i]);
++i;
}
if (j < n) {
ans.push_back(word2[j]);
++j;
}
}
return ans;
}
};
|