queueelement.java

来自「mallet是自然语言处理、机器学习领域的一个开源项目。」· Java 代码 · 共 38 行

JAVA
38
字号
package edu.umass.cs.mallet.base.util.search;/** * Created by IntelliJ IDEA. * User: pereira * Date: Jun 18, 2005 * Time: 7:31:08 PM * * Queue elements have a priority, and a queue position. * Lower-priority elements are closer to the front of the queue. * The queue position is set by the queue implementation, * and should not be changed outside the queue implementation. */public interface QueueElement {  /**   * Get this element's priority.   * @return the priority   */  public double getPriority();  /**   * Set the priority of this element.   * @param priority the element's new priority   */  public void setPriority(double priority);  /**   * Get the queue position of this element. If the element is not in a queue,   * the returned value is meaningless.   * @return the current position   */  public int getPosition();  /**   * Set the current queue position for this element. This should only   * be called by a queue implementation.   * @param pos the new position for the element   */  public void setPosition(int pos);}

⌨️ 快捷键说明

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