1768.交替合并字符串

【LetMeFly】1768.交替合并字符串

力扣题目链接:https://leetcode.cn/problems/merge-strings-alternately/

给你两个字符串 word1word2 。请你从 word1 开始,通过交替添加字母来合并字符串。如果一个字符串比另一个字符串长,就将多出来的字母追加到合并后字符串的末尾。

返回 合并后的字符串

 

示例 1:

输入:word1 = "abc", word2 = "pqr"
输出:"apbqcr"
解释:字符串合并情况如下所示:
word1:  a   b   c
word2:    p   q   r
合并后:  a p b q c r

示例 2:

输入:word1 = "ab", word2 = "pqrs"
输出:"apbqrs"
解释:注意,word2 比 word1 长,"rs" 需要追加到合并后字符串的末尾。
word1:  a   b 
word2:    p   q   r   s
合并后:  a p b q   r   s

示例 3:

输入: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
  • word1word2 由小写英文字母组成

方法一:双指针

使用两个“指针”分别指向两个字符串处理到的位置。

当两个指针都没有达到字符串末尾时,答案字符串加上两个指针所指的元素(交替)

当某个指针指到了字符串末尾,就把没指到末尾的指针不断后移并添加到答案字符串中(多出来的部分),直到这个指针也移动到字符串末尾

  • 时间复杂度$O(n+m)$,其中$n$和$m$分别是两个字符串的长度
  • 空间复杂度$O(1)$,力扣算法答案不计入空间复杂度

AC代码

C++

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Solution {
public:
string mergeAlternately(string& word1, string& word2) {
int n1 = word1.size(), n2 = word2.size();
int loc1 = 0, loc2 = 0;
string ans;
while (loc1 < n1 && loc2 < n2) {
ans += word1[loc1++];
ans += word2[loc2++];
}
while (loc1 < n1) {
ans += word1[loc1++];
}
while (loc2 < n2) {
ans += word2[loc2++];
}
return ans;
}
};

运气比较好

Lucky

同步发文于CSDN,原创不易,转载请附上原文链接哦~
Tisfy:https://letmefly.blog.csdn.net/article/details/127470753


1768.交替合并字符串
https://blog.letmefly.xyz/2022/10/23/LeetCode 1768.交替合并字符串/
作者
Tisfy
发布于
2022年10月23日
许可协议