文件名称:DoubleLinkedBag:带双链表的 Bag 实现
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-24 12:22:53
Java
public interface BagI { /** 获取当前这个包中的条目数。 @return 当前在包中的条目的整数个数 */ public int getCurrentSize(); /** Sees whether this bag is full. @return true if the bag is full, or false if not */ public boolean isFull(); /** Sees whether this bag is empty. @return true if the bag is empty, or false if not */ public boolean isEmpty(); /** Adds a new entry to this bag. @param newEntry the object to be a
【文件预览】:
DoubleLinkedBag-master
----bin()
--------.gitignore(79B)
----.settings()
--------org.eclipse.jdt.core.prefs(587B)
----src()
--------DoublyLinkedBag.java(3KB)
--------BagI.java(2KB)
--------BagITest.java(2KB)
----.project(381B)
----.classpath(372B)
----README.md(2KB)