美文网首页
Leetcode389. 找不同

Leetcode389. 找不同

作者: LonnieQ | 来源:发表于2019-11-16 18:36 被阅读0次

题目

给定两个字符串 s 和 t,它们只包含小写字母。

字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。

请找出在 t 中被添加的字母。

示例:

输入:
s = "abcd"
t = "abcde"

输出:
e

解释:
'e' 是那个被添加的字母。

C++解法

方法一:用字典统计s和t每个字符出现的次数。

#include <iostream>
#include <vector>
#include <map>
#include <set>
using namespace std;
class Solution {
public:
    char findTheDifference(string s, string t) {
        map<char, int> scounter, tcounter;
        for (auto c: s) ++scounter[c];
        for (auto c: t) ++tcounter[c];
        for (auto item: tcounter) {
            if (tcounter[item.first] != scounter[item.first]) return item.first;
        }
        return -1;
    }
};
int main(int argc, const char * argv[]) {
    Solution solution;
    cout << solution.findTheDifference("abcd", "abcde") << endl;
    return 0;
}

方法二:
由于s和t只有一个字符的差别,用异或操作可以把这个字符还原出来。

class Solution {
public:
    char findTheDifference(string s, string t) {
        char value = 0;
        for (auto c: s) value ^= c;
        for (auto c: t) value ^= c;
        return value;
    }
};

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-the-difference

相关文章

  • Leetcode389. 找不同

    题目 给定两个字符串 s 和 t,它们只包含小写字母。 字符串 t 由字符串 s 随机重排,然后在随机位置添加一个...

  • LeetCode389.找不同

    给定两个字符串 s 和 t,它们只包含小写字母。 字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母。...

  • 找不同

  • 找不同

    每一天生命充满了奇迹,每一个瞬间是那样细腻而温柔,充满了灵动,我的每一个细胞在都在和每一个遇见活泼的互动着,每一时...

  • 找不同

  • 找不同

    找不同 文/若素 左边 右边 到处都是生活 孩子张着嘴等待父亲的筷子 母亲看着吃得很香的女儿眯着眼睛 在每一个节日...

  • 找不同

    百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百百白百百百百百百百百百百百百百百百百...

  • 找不同

    你是首先希望你的国家越来越好,还是首先希望这个世界越来越好? 你是首先希望你自己越来越好,还是首先希望你的国家越来越好?

  • 找不同

    以下是儿子的解答 第一组:第四个不一样,因为它是吃的,其他的都是比赛用的,我说是体育用品,他非要说是比赛用的,没...

  • 找不同

    房间找不同

网友评论

      本文标题:Leetcode389. 找不同

      本文链接:https://www.haomeiwen.com/subject/ymayictx.html