Valid Anagram

Posted dylqt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Valid Anagram相关的知识,希望对你有一定的参考价值。

Valid Anagram

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.

class Solution {
public:
bool isAnagram(string s, string t) {
vector<int> count(26, 0);
for(int i = 0; i < s.size(); i ++)
count[s[i]-‘a‘] ++;
for(int i = 0; i < t.size(); i ++)
count[t[i]-‘a‘] --;
for(int i = 0; i < 26; i ++)
if(count[i] != 0)
return false;
return true;
}
};
 
 
class Solution {
public:
bool isAnagram(string s, string t) {
sort(s.begin(), s.end());
sort(t.begin(), t.end());
return s == t;
}
};

 

以上是关于Valid Anagram的主要内容,如果未能解决你的问题,请参考以下文章

@Validated注解和@Valid注解区别

javax的@Valid注解使用场景

Valid Sudoku

后端使用@Valid注解进行数据校验

242. Valid Anagram

java注解@Valid@Validated表单验证