作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从破解编码面试中回答以下问题。下面的代码是 GitHub 上一个项目的一部分,here .
Given a binary search tree, design an algorithm which creates a linked list of all the nodes at each depth (i.e., if you have a tree with depth D, you’ll have D linked lists).
@Test
public void testGetValuesAtEachLevel() {
Integer[] treeValues = {
1, 2, 3, 4, 5,
6, 7, 8, 9, 10,
11, 12, 13, 14, 15
};
tree = new GenericBinaryTree<>(treeValues);
Integer[][] expectedArray = {
{ 1 },
{ 2, 3 },
{ 4, 5, 6, 7 },
{ 8, 9, 10, 11, 12, 13, 14, 15 }
};
List<List<Node<Integer>>> expectedList = new ArrayList<>(4);
for (Integer[] level : expectedArray) {
List<Node<Integer>> list = new LinkedList<>();
for (Integer value : level) {
list.add(new Node<>(value));
}
expectedList.add(list);
}
assertEquals(expectedList, tree.getValuesAtEachLevel());
}
List<List<Node<T>>> getValuesAtEachLevel() {
List<List<Node<T>>> results = new ArrayList<>();
List<Node<T>> firstLevel = new LinkedList<>();
firstLevel.add(getRoot());
results.add(firstLevel);
loadAtLevel(results, 1);
return results;
}
private void loadAtLevel(List<List<Node<T>>> list, int level) {
List<Node<T>> levelList = new LinkedList<Node<T>>();
for (Node<T> node : list.get(level - 1)) {
if (node.left() != null) levelList.add(node.left());
if (node.right() != null) levelList.add(node.right());
}
if (levelList.isEmpty()) return;
level++;
list.add(levelList);
loadAtLevel(list, level);
}
java.lang.AssertionError: expected:
java.util.ArrayList<[[1], [2, 3], [4, 5, 6, 7], [8, 9, 10, 11, 12, 13, 14, 15]]> but was:
java.util.ArrayList<[[1], [2, 3], [4, 5, 6, 7], [8, 9, 10, 11, 12, 13, 14, 15]]>
assertEquals(expectedList.toString(), tree.getValuesAtEachLevel().toString());
最佳答案
正如@Jon Skeet 在评论中指出的那样,您需要覆盖 equals
和 hashCode
为您的Node
类,对其实例执行比较 (equals
)。
样本(使用 IntelliJ 默认自动生成)可以是 -
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Node<?> node = (Node<?>) o;
if (left != null ? !left.equals(node.left) : node.left != null) return false;
if (right != null ? !right.equals(node.right) : node.right != null) return false;
if (parent != null ? !parent.equals(node.parent) : node.parent != null) return false;
return value != null ? value.equals(node.value) : node.value == null;
}
@Override
public int hashCode() {
int result = left != null ? left.hashCode() : 0;
result = 31 * result + (right != null ? right.hashCode() : 0);
result = 31 * result + (parent != null ? parent.hashCode() : 0);
result = 31 * result + (value != null ? value.hashCode() : 0);
return result;
}
assertEquals(expectedList.toString(),tree.getValuesAtEachLevel().toString());
String
具有
@Override
的实例n
equals
定义
here
关于java - 当预期和实际看起来相同时,为什么我会收到 AssertionError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41118063/
现在我正在尝试实现 flash programming specification对于 PIC32MX。我正在使用 PIC32MX512L 和 PIC32MX512H。 PIC32MX512L最终必须
我是一名优秀的程序员,十分优秀!