vote up 0 vote down star

I realize C# and .NET in general already has the Hashtable and Dictionary classes.

Can anyone demonstrate in C# an implementation of a Hashtable?

Update: To clarify, I'm not ncessarily looking for a complete implementation, just an example of the core features of a hashtable (i.e. add,remove, find by key).

flag

5 Answers

vote up 2 vote down check

There is also the Mono version of the class libraries of course:

link|flag
vote up 6 vote down

Have you looked at the C5 collections? You can download the source which includes a hash table.

link|flag
Thanks for the link. I was hoping for a small basic example of Add/Remove with the hashing modulo including, but not sure if that will fill the entire page – Arec Barrwin Mar 9 at 12:23
vote up 5 vote down

You can see how the .NET Hashtable is implemented (for example in C#) using reflector

http://www.red-gate.com/products/reflector/

link|flag
vote up 2 vote down

You can view a simple 'grow-only' hashtable here, which should give you an idea of a simple implementation.

Disclaimer: There is probably a few bugs in the code, but the principle is the same :)

link|flag
vote up 1 vote down

You could also look at the Hashtable implementation from Mono here:

http://anonsvn.mono-project.com/viewvc/trunk/mcs/class/corlib/System.Collections/Hashtable.cs?revision=111788&view=markup

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.