LeetCode_242.有效的字母异位词

给定两个字符串 st ,编写一个函数来判断 t 是否是 s 的字母异位词。

示例 1:

输入: s = "anagram", t = "nagaram"
输出: true

示例 2:

输入: s = "rat", t = "car"
输出: false

说明:
你可以假设字符串只包含小写字母。

进阶:
如果输入字符串包含 unicode 字符怎么办?你能否调整你的解法来应对这种情况?

C#代码

public class Solution {
    public bool IsAnagram(string s, string t) {
        Dictionary<char, int> dic = new Dictionary<char, int>();
        foreach (var item in s)
        {
            int num;
            if (dic.TryGetValue(item, out num))
            {
                dic.Remove(item);
                num += 1;
            }
            else
            {
                num = 1;
            }
            dic.Add(item, num);
        }

        foreach (var item in t)
        {
            if (dic.TryGetValue(item, out int num))
            {
                dic.Remove(item);
                if (num > 1)
                {
                    dic.Add(item, num - 1);
                }
            }
            else
            {
                return false;
            }
        }

        if (dic.Count > 0)
        {
            return false;
        }
        return true;
    }
}
原文地址:https://www.cnblogs.com/fuxuyang/p/14244591.html