Re: Fwd: Re: [Libclc-developers] Introducing the double linked list interface
Status: Planning
Brought to you by:
augestad
|
From: <bo...@me...> - 2003-03-19 05:59:17
|
Bryan Donlan wrote:
>
> What about maps/dictionaries/whatever they're called? It should have
a hashing
> function on the items...
Here's a list of the container classes in STL. That should be sufficient
for most needs and is also a good specification to work from.
# Sequences
1. vector
2. deque
3. list
4. slist
5. bit_vector
# Associative Containers
1. set
2. map
3. multiset
4. multimap
5. hash_set
6. hash_map
7. hash_multiset
8. hash_multimap
9. hash
Need more containers? :-)
void* is OK for data, I guess. The hard part will be to find a *good*
way to represent keys. Does anyone have a good concept for keys?
[snip]
--
boa
|