

思路:双指针
Java
class Solution {
public String mergeAlternately(String word1, String word2) {
int n1 = word1.length(), n2 = word2.length();
int i1 = 0, i2 = 0;
StringBuilder res = new StringBuilder();
while (i1 < n1 || i2 < n2) {
if (i1 < n1)
res.append(word1.charAt(i1++));
if (i2 < n2)
res.append(word2.charAt(i2++));
}
return res.toString();
}
}
- 时间复杂度:O(n+m)O(n+m)O(n+m)
- 空间复杂度:O(n+m)O(n+m)O(n+m)
C++
class Solution {
public:
string mergeAlternately(string word1, string word2) {
int n1 = word1.size(), n2 = word2.size();
int i1 = 0, i2 = 0;
string res;
res.reserve(n1 + n2);
while (i1 < n1 || i2 < n2) {
if (i1 < n1)
res.push_back(word1[i1++]);
if (i2 < n2)
res.push_back(word2[i2++]);
}
return res;
}
};
- 时间复杂度:O(n+m)O(n+m)O(n+m)
- 空间复杂度:O(n+m)O(n+m)O(n+m)
Rust
impl Solution {
pub fn merge_alternately(word1: String, word2: String) -> String {
let (n1, n2) = (word1.len(), word2.len());
let (mut i1, mut i2) = (0, 0);
let mut res = "".to_string();
while i1 < n1 || i2 < n2 {
if i1 < n1 {
res.push(word1.chars().nth(i1).unwrap());
i1 += 1;
}
if i2 < n2 {
res.push(word2.chars().nth(i2).unwrap());
i2 += 1;
}
}
res
}
}
- 时间复杂度:O(n+m)O(n+m)O(n+m)
- 空间复杂度:O(n+m)O(n+m)O(n+m)
总结
- 简单模拟光速结束……
- 但、前两天的博客还在草稿箱里……先放他吃个二斤灰再说