edgeiterator.java

来自「用java实现的关联规则算法Apriori算法」· Java 代码 · 共 35 行

JAVA
35
字号
package dragon.ml.seqmodel.model;/** * <p>Interface of Edge Iterator</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface EdgeIterator {    /**     * Starts scaning all edges in the graph     */    public void start();    /**     * Tests if the next edge exists     * @return true if the next edge exists     */    public boolean hasNext();    /**     * Gets the next edge     * @return the next edge     */    public Edge next();    /**     * @return true if the next edge is from the outer model     */    public boolean nextIsOuter();};

⌨️ 快捷键说明

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