码迷,mamicode.com
首页 > 其他好文 > 详细

Valid Anagram

时间:2017-04-23 18:10:15      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:table   hashtable   logs   ret   als   tor   需要   har   ++   

Valid Anagram:注意所有字符都需要利用到

class Solution {
public:
    bool isAnagram(string s, string t) {
        unordered_map<char, int> hashTable;
        for(int i=0; i<s.size(); ++i)
            hashTable[s[i]] += 1;
        
        for(int i=0; i<t.size(); ++i)
        {
            if(hashTable.find(t[i]) != hashTable.end() && hashTable[t[i]] > 0)
                hashTable[t[i]] -= 1;
            else
                return false;
        }
        
        unordered_map<char, int>::iterator iter;
        for(iter = hashTable.begin(); iter != hashTable.end(); ++iter)
            if(iter->second > 0)
                return false;
        
        return true;
    }
};

 

Valid Anagram

标签:table   hashtable   logs   ret   als   tor   需要   har   ++   

原文地址:http://www.cnblogs.com/chengyuz/p/6753043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!