Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

map

0 views
Skip to first unread message

xuchm

unread,
Sep 5, 2008, 4:14:52 AM9/5/08
to xcm...@gmail.com
hi, all

Is there any C lib implentments map like c++?

Richard Heathfield

unread,
Sep 5, 2008, 4:31:47 AM9/5/08
to
xuchm said:

> hi, all
>
> Is there any C lib implentments map like c++?

A C++ map is merely an associative container (i.e. a bucket into which you
can chuck paired up keys and payloads, such that, given the key, you can
get the payload) that (IIRC) observes certain complexity guarantees. It is
quite simple to write something of the kind in C, in any of a number of
ways - e.g. a self-balancing binary search tree (red-black, AVL, splay,
roll-your-own, etc) or a hash table. Relevant libraries are ten a penny,
or cheaper.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999

eldre...@gmail.com

unread,
Sep 5, 2008, 11:14:50 AM9/5/08
to
On Sep 5, 1:31 am, Richard Heathfield <r...@see.sig.invalid> wrote:
> xuchm said:
>
> > hi, all
>
> > Is there any C lib implentments map like c++?
>
> A C++ map is merely an associative container (i.e. a bucket into which you
> can chuck paired up keys and payloads, such that, given the key, you can
> get the payload) that (IIRC) observes certain complexity guarantees. It is
> quite simple to write something of the kind in C, in any of a number of
> ways - e.g. a self-balancing binary search tree (red-black, AVL, splay,
> roll-your-own, etc) or a hash table. Relevant libraries are ten a penny,
> or cheaper.

Wow, prices sure are coming down. I remember when they used to be a
dime a dozen.

Joe Wright

unread,
Sep 5, 2008, 2:21:47 PM9/5/08
to

Stronger Pound vs weaker Dollar I suppose.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---

user923005

unread,
Sep 5, 2008, 3:16:02 PM9/5/08
to
On Sep 5, 1:14 am, xuchm <xcm...@gmail.com> wrote:
> hi, all
>
> Is there any C lib implentments  map like c++?

This:
http://sourceforge.net/search/index.php?words=%28%2BC+hash+hashmap+map%29+AND+-has_file%3A%280%29&type_of_search=soft&pmode=0&limit=100

Gives me 6422 results. I guess maybe something in there can help you.

CBFalconer

unread,
Sep 5, 2008, 7:43:30 PM9/5/08
to
user923005 wrote:

> xuchm <xcm...@gmail.com> wrote:
>
>> Is there any C lib implentments map like c++?
>
> This:
> http://sourceforge.net/search/index.php?words=%28%2BC+hash+hashmap+map%29+AND+-has_file%3A%280%29&type_of_search=soft&pmode=0&limit=100
>
> Gives me 6422 results. I guess maybe something in there can help you.

Take a look at (GPL'd, completely standard C):

<http://cbfalconer.home.att.net/download/hashlib.zip>

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

0 new messages