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

[leetcode-242-Valid Anagram]

时间:2017-06-03 12:47:45      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:int   nat   lower   style   http   term   排序   san   for   

Given two strings s and t, write a function to determine if t is an anagram of s.
For example,
s = "anagram", t = "nagaram", return true.
s = "rat", t = "car", return false.

Note:
You may assume the string contains only lowercase alphabets.

思路:

anagram有一个特点就是排序之后,字符串是相等的。

bool isAnagram(string s, string t) 
{
  if(s.size()!=t.size())return false;
  map<string,int>m;
  sort(s.begin(),s.end()); 
  sort(t.begin(),t.end());
  m[s]++;
  m[t]++;
   if(m.size()==2)return false;
   return true;  
}

还可以用hash

bool isAnagram(string s, string t) {
        if (s.length() != t.length()) return false;
        int n = s.length();
        unordered_map<char, int> counts;
        for (int i = 0; i < n; i++) {
            counts[s[i]]++;
            counts[t[i]]--;
        }
        for (auto count : counts)
            if (count.second) return false;
        return true;
    }
bool isAnagram(string s, string t) {
        if (s.length() != t.length()) return false;
        int n = s.length();
        int counts[26] = {0};
        for (int i = 0; i < n; i++) { 
            counts[s[i] - a]++;
            counts[t[i] - a]--;
        }
        for (int i = 0; i < 26; i++)
            if (counts[i]) return false;
        return true;
    }

参考:

https://discuss.leetcode.com/topic/20303/2-c-solutions-with-explanations

[leetcode-242-Valid Anagram]

标签:int   nat   lower   style   http   term   排序   san   for   

原文地址:http://www.cnblogs.com/hellowooorld/p/6936627.html

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