What library should I use for dictionaries/hashmaps/associative arrays?

Started by jyc, August 19, 2012, 09:30:33 AM

Previous topic - Next topic

jyc

Hello,

What library is typically used with Pelles C to implement dictionaries?

Thanks,
Jonathan

CommonTater

There is no "Dictionary" library for Pelles C that I know of.

There are probably several you could use... just be sure they are written for C-99 or C-11  not C++.

However, dictionaries aren't that hard to write... a list of words, a big ole string array, a bit of binary searching...

Pelle

There are some very basic hash, tree, and linked list functions in search.h ...
/Pelle