我尝试为字谜编写一个小代码,然后我写下了onw。
String s = "anagram";
String t = "nagara";
Map<Character,Integer> map1 = new HashMap<Character,Integer>();
Map<Character,Integer> map2 = new HashMap<Character,Integer>();
if (s.length() != t.length()) {
System.out.println("Not an anagram");
} else {
for (int i= 0;i<s.length();i++) {
char c = s.charAt(i);
char d = t.charAt(i);
if (map1.containsKey(c)) {
map1.put(c, map1.get(c)+1);
} else {
map1.put(c,1);
}
if (map2.containsKey(d)) {
map2.put(d, map2.get(d)+1);
} else {
map2.put(d,1);
}
}
for (Map.Entry<Character, Integer> entry : map1.entrySet()) {
if (!map2.containsKey(entry.getKey())) {
System.out.println("Not an anagram");
} else if (entry.getValue() != map2.get(entry.getKey())) {
System.out.println("Not an anagram");
}
}
}
这适用于几乎所有情况,但是当我输入leetcode进行检查时,它会失败,其中一个最长的字谜有50000个字符。 有人能指出我在这里看错了吗?
答案 0 :(得分:7)
您是Integer
caching的受害者,其值介于-128和+127之间。
当您计算两个单词中的字符数时,将值作为盒装 Integer
对象放入地图中,您需要将它们作为对象进行比较,而不是值。
问题在于这一行:
else if (entry.getValue() != map2.get(entry.getKey()))
在这里,您将两个Integer
个对象与!=
进行比较,而不是使用
else if (!entry.getValue().equals(map2.get(entry.getKey())))
这对短词起作用的原因是每个字符的出现次数不超过127的神奇值。
这些值缓存在Integer
类中,因此小于(且等于)该值的盒装整数是相同,而大于该值的盒装整数是不同的对象等于值。