242. 有效的字母异位词

Problem: 242. 有效的字母异位词

思路

哈希表将字母的ASCII码值映射到对应26size的数组中,对应位记录字母出现次数

错误

忘记了C++ 数组初始化方式

int hash[26] = {0}

int* hash = new int[26]()

复杂度

  • 时间复杂度:

$O(n)$

  • 空间复杂度:

$O(1)$

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Solution {
public:
    bool isAnagram(string s, string t) {
        if(s.size() != t.size()) return false;

        // int hash[26] = {0};
        int* hash = new int[26]();

        for(int i = 0; i < s.size(); i++) {
            hash[s[i] - 'a']++;
        }

        for(int i = 0; i < t.size(); i++) {
            hash[t[i] - 'a']--;
        }

        for(int i = 0; i < 26; i++) {
            if(hash[i] != 0) return false;
        }

        delete[] hash;
        return true;
    }
};