2 Star 0 Fork 0

20162324-春旺 / 第二学期

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BinaryTree.java 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
20162324-春旺 提交于 2017-10-26 13:41 . 补全代码,添加测试类
package ch16;
import java.util.Iterator;
/**
* Created by 春旺 on 2017/10/18.
*/
public interface BinaryTree<T> extends Iterable<T>
{
// Returns the element stored in the root of the tree.
public T getRootElement();
// Returns the left subtree of the root.
public BinaryTree<T> getLeft();
// Returns the right subtree of the root.
public BinaryTree<T> getRight();
// Returns true if the binary tree contains an element that
// matches the specified element and false otherwise.
public boolean contains (T target) throws ElementNotFoundException;
// Returns a reference to the element in the tree matching
// the specified target.
public T find (T target) throws ElementNotFoundException;
// Returns true if the binary tree contains no elements, and
// false otherwise.
public boolean isEmpty();
// Returns the number of elements in this binary tree.
public int size();
// Returns the string representation of the binary tree.
public String toString();
// Returns a preorder traversal on the binary tree.
public Iterator<T> preorder();
// Returns an inorder traversal on the binary tree.
public Iterator<T> inorder();
// Returns a postorder traversal on the binary tree.
public Iterator<T> postorder();
// Performs a level-order traversal on the binary tree.
public Iterator<T> levelorder();
}
Java
1
https://gitee.com/CHUNWANG/DiErXueQi.git
git@gitee.com:CHUNWANG/DiErXueQi.git
CHUNWANG
DiErXueQi
第二学期
master

搜索帮助