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

📄 event.java

📁 国外的数据结构与算法分析用书
💻 JAVA
字号:
/**	A generic event for the waiting-line simulation. */
public abstract class Event implements Comparable
{
	/**	The time that the event is to be done. */
	protected int time;

	/**	Implementation of the Comparable interface.
		Analysis: Time = O(1) */
	public int compareTo(Object other)
	{
		Integer t1 = new Integer(time);
		Integer t2 = new Integer(((Event)other).time);
		return t1.compareTo(t2);
	}

	/**	Execute this event. */
	abstract public void execute();
}

⌨️ 快捷键说明

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