|
ORIGINAL
|
Implementation of hashMap container. More...
#include "allocator.h"#include "couple.h"#include "hash.h"#include "hashTable.h"#include "map.h"#include "ownerPtr.h"#include "comparator.h"#include "RBTree.h"

Go to the source code of this file.
Classes | |
| class | original::hashMap< K_TYPE, V_TYPE, HASH, ALLOC > |
| Hash table based implementation of the map interface. More... | |
| class | original::hashMap< K_TYPE, V_TYPE, HASH, ALLOC >::Iterator |
| Bidirectional iterator for hashMap. More... | |
| class | original::treeMap< K_TYPE, V_TYPE, Compare, ALLOC > |
| Red-Black Tree based implementation of the map interface. More... | |
| class | original::treeMap< K_TYPE, V_TYPE, Compare, ALLOC >::Iterator |
| Bidirectional iterator for treeMap. More... | |
Namespaces | |
| namespace | original |
| Main namespace for the project Original. | |
Implementation of hashMap container.
Provides a hash-based map implementation with:
Key Features: