vote up 2 vote down star
2

Is there similar component for Delphi like dictionary of Python?

I'm now using TStringList to map string/object pairs, but I'd like more general approach and maybe more powerful (TStringList has binary search when it is sorted).

Solutions for pre-D2009 are also welcome.

flag

5 Answers

vote up 4 vote down check

There is a THashedStringList class (subclassed from TStringList) "hidden" in IniFiles.pas that can significantly speed up searching in a string list based dictionary.

link|flag
vote up 7 vote down

There is in Delphi 2009. A whole new containers unit has been added, and a Dictionary class is one of the classes available.

Couple this with Generics, and you have a very powerful set of classes.

link|flag
Nice, I didn't know that. One more reason to upgrade. – Scott W Dec 18 '08 at 15:31
vote up 2 vote down

I haven't tried it myself, but how about this Delphi Collections package? (Thank you Google).

link|flag
vote up 2 vote down

If you are looking for some Hashtable implementations take a look at Hashtable implementations

link|flag
vote up 1 vote down

I have allways used DeCAL. It includes both sequences, maps and hashtables.

link|flag
It's very nice for prototyping in pre D2009, but dog slow unfortunately. – Marco van de Voort Jul 13 at 14:52
I have heard people say this, but have never had any problems my self. Maybe because amount of data ain't that large, or that when we started to use it, we compared it to using TStringList... :-/ – Vegar Jul 13 at 20:39

Your Answer

Get an OpenID
or

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