题目描述
给定两个字符串 s 和 t,它们只包含小写字母。
字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。
请找出在 t 中被添加的字母。
示例 1:
输入:s = "abcd", t = "abcde"
输出:"e"
解释:'e' 是那个被添加的字母。
示例 2:
输入:s = "", t = "y"
输出:"y"
示例 3:
输入:s = "a", t = "aa"
输出:"a"
示例 4:
输入:s = "ae", t = "aea"
输出:"a"
提示:
0 <= s.length <= 1000
t.length == s.length + 1
s 和 t 只包含小写字母
解题思路
- 计数
使用数组记录字符串s每个字母的出现次数,遍历字符串t,对应字母次数减1,找到小于零的字母,即为添加的字母。 - 求和
除了添加的字母,字符串s和字符串t组成相同,各自求和后的差即为添加的字母的ascii码。 - 位运算
字符串s和字符串t中除了添加的字母出现奇数次,其他所有的字母均出现偶数次,进行异或位运算,最后结果即为添加的字母。
源码
class Solution {
public:
char findTheDifference(string s, string t) {
/*
vector<int> cnt(26,0);
char ans;
for(char c:s)
{
cnt[c-'a']++;
}
for(char c:t)
{
cnt[c-'a']--;
if(cnt[c-'a']<0)
{
ans=c;
}
}
return ans;
*/
/*
// 官方-求和
int as=0,at=0;
for(char c:s)
{
as+=c;
}
for(char c:t)
{
at+=c;
}
return at-as;
*/
// 官方-位运算
int ans=0;
for(char c:s)
{
ans^=c;
}
for(char c:t)
{
ans^=c;
}
return ans;
}
};
题目来源
来源:力扣(LeetCode)