作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道java中是否有可能有一个中序树遍历方法实际上返回一些东西...我试图遍历给定一个节点和一个值的树,返回与该值匹配的节点:
/**
* Variable for storing found node from inorder search
*/
private Node returnNode;
/**
* Perform an inorder search through tree.
* If a value is matched, the node is saved to returnNode, otherwise return null.
* @param node The given node
* @param value The value of the node to be found.
*/
public void inorder(Node node, Object value){
if(node != null){
inorder(node.leftChild, value);
if(node.value.equals(value)){
System.out.println(value + " was found at " + node);
returnNode = node;
}
inorder(node.rightChild, value);
}
}
现在,我尝试声明一个公共(public)节点来存储该值,但我发现当我运行时这不起作用:
assertEquals(newNode3, BT.contains("3"));
assertEquals(null, BT.contains("abcd"));
returnNode 采用 newNode3 的值并搞乱了我对 null 的测试。
有人能指出我正确的方向吗?
最佳答案
我以为你会想要这样的东西:
/**
* Perform an inorder search through tree.
* The first node in order that matches the value is returned, otherwise return null.
* @param node The given node
* @param value The value of the node to be found.
* @return The first node that matches the value, or null
*/
public Node inorder(Node node, Object value){
Node result = null;
if(node != null){
result = inorder(node.leftChild, value);
if( result != null) return result;
if(node.value.equals(value)){
System.out.println(value + " was found at " + node);
return node;
}
result = inorder(node.rightChild, value);
}
return result;
}
关于java - 二叉树中序遍历的非空方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7592718/
序 大家好呀,我是summo,这次来写写我在上班空闲(摸鱼)的时候做的一个小网站的事。去年阿里云不是推出了个活动嘛,2核2G的云服务器一年只要99块钱,懂行的人应该知道这个价格在业界已经是非常良心了
我尝试根据给定的级别顺序(BFS 顺序)构造 BST。我知道这是可能的,但我不知道我该怎么写。问题是我必须使用 BFS 序列。所以,我不能在这里使用递归,我必须迭代地编写我的程序......我发现这有
我是一名优秀的程序员,十分优秀!