?? unorderedlistadt.java
字號(hào):
//********************************************************************// UnorderedListADT.java Authors: Lewis/Chase//// Defines the interface to an unordered list collection. Elements// are stored in any order the user desires.//********************************************************************package jss2;public interface UnorderedListADT<T> extends ListADT<T>{ /** Adds the specified element to the front of this list */ public void addToFront (T element); /** Adds the specified element to the rear of this list */ public void addToRear (T element); /** Adds the specified element after the specified target */ public void addAfter (T element, T target);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -