首页 > 代码库 > 242.判断一个字符串是否为另一个的乱序 Valid Anagram
242.判断一个字符串是否为另一个的乱序 Valid Anagram
错误1
"aa"
"bb"
static public bool IsAnagram(string s, string t) {
int sLength = s.Length;
int tLength = t.Length;
if (sLength != tLength) {
return false;
}
char c = ‘ ‘;
int value = 0;
Dictionary<char, int> d = new Dictionary<char, int>();
for (int i = 0; i < sLength; i++) {
c = s[i];
if (d.TryGetValue(c, out value)) {
d[c] += 1;
} else {
d[c] = 1;
}
c = t[i];
if (d.TryGetValue(c, out value)) {
d[c] += 1;
} else {
d[c] = 1;
}
}
foreach(int i in d.Values) {
if (i % 2 != 0) {
return false;
}
}
return true;
}
解法
public class Solution {
public bool IsAnagram(string s, string t) {
int sLength = s.Length;
int tLength = t.Length;
if (sLength != tLength) {
return false;
}
char[] sChars = s.ToCharArray();
char[] tChars = t.ToCharArray();
Array.Sort(sChars);
Array.Sort(tChars);
for (int i = 0; i < sLength; i++) {
if (sChars[i] != tChars[i]) {
return false;
}
}
return true;
}
}
来自为知笔记(Wiz)
242.判断一个字符串是否为另一个的乱序 Valid Anagram
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。