代码拉取完成,页面将自动刷新
package SecondTerm.week7;
import java.util.Iterator;
public interface BinaryTreeADT<T> {
/**
* 获取根部元素
*
* @return
*/
public T getRootElement();
/**
* 判断是否是空树
*
* @return true if this binary tree is empty, false otherwise
*/
public boolean isEmpty();
/**
* 返回树中元素的个数
*
* @return the number of elements in the tree
*/
public int size();
/**
*判定二叉树中是否存在当前的元素
*
* @param targetElement
* the element being sought in the tree
* @return true if the tree contains the target element
*/
public boolean contains(T targetElement);
/**
*在二叉树中查找响应的元素
*
* @param targetElement
* the element being sought in the tree
* @return a reference to the specified element
*/
public T find(T targetElement);
/**
*输出二叉树
*
* @return a string representation of the binary tree
*/
public String toString();
/**
*返回二叉树的迭代器
*
* @return an iterator over the elements of this binary tree
*/
public Iterator<T> iterator();
/**
* Returns an iterator that represents an inorder traversal on this binary
* tree.
*
* @return an iterator over the elements of this binary tree
*/
public Iterator<T> iteratorInOrder();
/**
* Returns an iterator that represents a preorder traversal on this binary
* tree.
*
* @return an iterator over the elements of this binary tree
*/
public Iterator<T> iteratorPreOrder();
/**
* Returns an iterator that represents a postorder traversal on this binary
* tree.
*
* @return an iterator over the elements of this binary tree
*/
public Iterator<T> iteratorPostOrder();
/**
* Returns an iterator that represents a levelorder traversal on the binary
* tree.
*
* @return an iterator over the elements of this binary tree
*/
public Iterator<T> iteratorLevelOrder();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。