美文网首页Leetcode
Leetcode 242. Valid Anagram

Leetcode 242. Valid Anagram

作者: SnailTyan | 来源:发表于2018-10-12 19:25 被阅读2次

    文章作者:Tyan
    博客:noahsnail.com  |  CSDN  |  简书

    1. Description

    Valid Anagram

    2. Solution

    • Version 1
    class Solution {
    public:
        bool isAnagram(string s, string t) {
            sort(s.begin(), s.end());
            sort(t.begin(), t.end());
            return s == t;
        }
    };
    
    • Version 2
    class Solution {
    public:
        bool isAnagram(string s, string t) {
            if(s.size() != t.size()) {
                return false;
            }
            map<char, int> m;
            for(int i = 0; i < s.size(); i++) {
                m[s[i]]++;
                
            }
            for(int i = 0; i < t.size(); i++) {
                m[t[i]]--;
                if(m[t[i]] < 0) {
                    return false;
                }
            }
            for(auto iter : m) {
                if(iter.second != 0) {
                    return false;
                }
            }
            return true;
        }
    };
    
    • Version 3
    class Solution {
    public:
        bool isAnagram(string s, string t) {
            if(s.size() != t.size()) {
                return false;
            }
            vector<int> alpha(26);
            for(char ch : s) {
                alpha[ch - 'a']++;
            }
            for(char ch : t) {
                alpha[ch - 'a']--;
            }
            for(int x : alpha) {
                if(x != 0) {
                    return false;
                }
            }
            return true;
        }
    };
    

    Reference

    1. https://leetcode.com/problems/valid-anagram/description/

    相关文章

      网友评论

        本文标题:Leetcode 242. Valid Anagram

        本文链接:https://www.haomeiwen.com/subject/wcogaftx.html