// Source : https://leetcode-cn.com/problems/find-the-difference/
// Date : 2021-11-10
/**************************************************************************************
给定两个字符串 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串中的对应字符置以特殊标记。然后找出t串中没有特殊标记的字符即为所求
********************************************************************************************************/
class Solution {
public:
char findTheDifference(string s, string t) {
for(int i = 0;i < s.size(); ++i)
{
//从s串遍历,将t串中对应的字符置特殊标记
int index = t.find(s[i]);
t[index] = '0';
}
char a;
//遍历t串,找出没有特殊标记的字符即为新添加的字符
for(char ch:t)
if(ch - 'a' >= 0)
a = ch;
return a;
}
};