⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inspectabletree.java

📁 真的很麻烦也
💻 JAVA
字号:
public interface InspectableTree extends InspectablePositionalContainer {  // accessor methods  /** return the root of the tree */  public Position root();  /** return the parent of a node */  public Position parent(Position v);  /** return the children of a node */  //public PositionIterator children(Position v);  // query methods  /** test whether a node is internal */  public boolean isInternal(Position v);  /** test whether a node is external */  public boolean isExternal(Position v);  /** test whether a node is the root of the tree */  public boolean isRoot(Position v);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -