NO

Author Topic: What library should I use for dictionaries/hashmaps/associative arrays?  (Read 2435 times)

jyc

  • Guest
Hello,

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

Thanks,
Jonathan

CommonTater

  • Guest
Re: What library should I use for dictionaries/hashmaps/associative arrays?
« Reply #1 on: August 19, 2012, 01:42:14 PM »
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...

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Re: What library should I use for dictionaries/hashmaps/associative arrays?
« Reply #2 on: September 01, 2012, 09:11:47 PM »
There are some very basic hash, tree, and linked list functions in search.h ...
/Pelle