📄 unorderedlistadt.java
字号:
//********************************************************************// 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);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -