有效的字母移位詞

光丿之晨曦。發表於2020-11-30

給定兩個字串 s 和 t ,編寫一個函式來判斷 t 是否是 s 的字母異位詞。

示例 1:

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

示例 2:

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

來源:力扣(LeetCode)
連結:https://leetcode-cn.com/problems/valid-anagram
著作權歸領釦網路所有。商業轉載請聯絡官方授權,非商業轉載請註明出處。

class Solution {
public:
    bool isAnagram(string s, string t) {
        unordered_map<char,int>a,b;
        for(auto e:s){
            a[e]++;
        }
        for(auto e:t){
            b[e]++;
        }
        for(auto e: a){
            if(e.second!=b[e.first]){
                return false;
            }
        }
        for(auto e: b){
            if(e.second!=a[e.first]){
                return false;
            }
        }
        return true;
    }
};

 

相關文章