orderedstructure.java

来自「赫夫曼编译码器: 用哈夫曼编码进行通信可以大大提高信道利用率」· Java 代码 · 共 20 行

JAVA
20
字号
// Interface for container classes that manipulated ordered structures.// (c) 1998, 2001 duane a. baileypackage structure;/** * An interface that supports a Collection whose values are kept * in increasing order.  Values stored within ordered structures * should implement Comparable; ie. they should have an implemented * compareTo method. *  * @see java.lang.Comparable * @see java.lang.Comparable#compareTo * @version $Id: OrderedStructure.java,v 4.0 2000/12/27 21:21:47 bailey Exp bailey $ * @author, 2001 duane a. bailey */public interface OrderedStructure extends Structure{}

⌨️ 快捷键说明

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