Interface | Description |
---|---|
SimpleIterator |
A very simple iterator interface.
|
SimpleList |
A simple list interface.
|
SimpleMap |
An simple map interface.
|
Tester.Operation |
Class | Description |
---|---|
ListTester |
A simple test harness for testing implementations of the SimpleList
interface.
|
MapTester |
A simple test harness for testing implementations of the SimpleMap
interface.
|
SimpleAbstractList |
An abstract superclass for list implementations.
|
SimpleArrayList |
An implementation of SimpleList, using a growable array of elements.
|
SimpleClosedHashMap |
Implementation of the SimpleMap interface via a closed hashing with
linear probing scheme.
|
SimpleLinkedList |
An implementation of SimpleList, using a circular, doubly-linked
list, without dummy (header) nodes.
|
SimpleListMap |
Implementation of the SimpleMap interface via a single SimpleList.
|
SimpleOpenHashMap |
Implementation of the SimpleMap interface via an open hashing
scheme.
|
Tester |
Superclass for writing simple, console-based testers for Collection
clases.
|