1. 题目

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

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

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

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

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

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/valid-anagram 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题思路

排个序就行,O(nlogn)。

或者用Hash,O(n)。

3. 代码

#define ull unsigned long long
const int B = 1e9+7;
class Solution {
public:    
    int bs[26],bt[26];
    ull getHash(int *b){
        ull res = 0;
        for(int i=0;i<26;++i){
            res = 10*res + (ull)(b[i])*B;
        }
        return res;
    }
    bool isAnagram(string s, string t) {
        if(s.size()!=t.size()) return false;  
        for(int i=0;i<26;i++) bs[i]=0,bt[i]=0;
        for(auto &c:s) bs[c-'a']++;
        for(auto &c:t) bt[c-'a']++;
        return getHash(bs)==getHash(bt);
    }
};

results matching ""

    No results matching ""