| Interface | Description | |
|---|---|---|
| IDataStructure | Represents a data structure. | |
| IList | Represents a list of data. | |
| IMap | Represents an object that maps keys to values. | |
| IQueue | Represents a FIFO list. | |
| IStack | Represents a LIFO list. |
| Class | Description | |
|---|---|---|
| ArrayList |
Represents a IList using an Array
to store the elements. |
|
| DictionnaryMap |
Represents a IMap based on a Dictionnary. |
|
| QueueList |
Represents a basic implementation of a IQueue object. |
|
| StackList |
Represents a basic implementation of a IStack object. |