Interface | Description |
---|---|
BagInterface<T> |
An interface that describes the operations of a bag of objects.
|
SimpleBagInterface<T> |
A simplified Bag Interface for students to use in Project 2.
|
Class | Description |
---|---|
Bag<T> |
A class of bags whose entries are stored in a chain of linked nodes.
|
Node<T> |
Node To be used when implementing Carrano Data structures with a singly
linked list.
|