C library containing implementations of associative containers.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Morten

    C library containing implementations of associative containers.

    Hi.

    Is there anybody who knows a C (not c++) library containing
    implementations of associative containers (stack, queue, hash table,
    linked list). It would be great if the performance of algorithms where
    high.

    Regards Morten.
  • Antoninus Twink

    #2
    Re: C library containing implementations of associative containers.

    On 7 May 2008 at 9:18, Morten wrote:
    Is there anybody who knows a C (not c++) library containing
    implementations of associative containers (stack, queue, hash table,
    linked list). It would be great if the performance of algorithms where
    high.
    libhx is one. I guess most C programmers roll their own at the start of
    their careers, and then use their "personal library" forevermore.

    Comment

    • Kiran Kumar Mukkamala

      #3
      Re: C library containing implementations of associative containers.

      Check with glib http://library.gnome.org/devel/glib/2.16/glib.html .
      This is a general purpose portable library. This may be helpful to you
      not only for the DS you are looking for but also for other purposes/
      constructs.

      Kiran

      On May 7, 2:26 pm, Antoninus Twink <nos...@nospam. invalidwrote:
      On 7 May 2008 at 9:18, Morten wrote:
      >
      Is there anybody who knows a C (not c++) library containing
      implementations of associative containers (stack, queue, hash table,
      linked list). It would be great if the performance of algorithms where
      high.
      >
      libhx is one. I guess most C programmers roll their own at the start of
      their careers, and then use their "personal library" forevermore.

      Comment

      • viza

        #4
        Re: C library containing implementations of associative containers.

        On May 7, 10:18 am, Morten <morten...@gmai l.comwrote:
        Hi.
        >
        Is there anybody who knows a C (not c++) library containing
        implementations of associative containers (stack, queue, hash table,
        linked list). It would be great if the performance of algorithms where
        high.
        >
        Regards Morten.
        Glib:


        Comment

        • CBFalconer

          #5
          Re: C library containing implementations of associative containers.

          Morten wrote:
          >
          Is there anybody who knows a C (not c++) library containing
          implementations of associative containers (stack, queue, hash table,
          linked list). It would be great if the performance of algorithms where
          high.
          hashlib.zip is available. The applications include some linked
          list matter, including methods of sorting such. See:

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

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

          ** Posted from http://www.teranews.com **

          Comment

          Working...