242. 有效的字母异位词
class Solution { public: bool isAnagram(string s, string t) { if(s.size()!=t.size()) return 0; int hash_s[26] = {0}, hash_t[26] = {0}; for(const auto &c:s) { hash_s[c-‘a‘]++; } for(const auto &c:t) { hash_t[c-‘a‘]++; } for(int i=0; i<26; i++) { if(hash_t[i]!=hash_s[i]) return 0; } return 1; } };
原文:https://www.cnblogs.com/jessica216/p/13497279.html