Thread: Data Structures Library for C?

  1. #1
    Registered User
    Join Date
    Jun 2002
    Posts
    5

    Question Data Structures Library for C?

    C++ has STL, Java has the JDK...is there a standard library of data structures for C? Things like HashMaps, Lists, Trees, Queues, etc...its an exercise in tedium implementing them myself, especially if they have already been done (probably more efficiently than I would do as well). If there isn't a standard, is there anything out there at all?

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    There is nothing standard for C - like in the same way that C++ has the STL.

    However, more or less specific libraries exist for all sorts of things. The big problem being how to find them, how to use them etc (being non-standard and all that).
    http://directory.google.com/Top/Comp...ibraries/?tc=1

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 02-28-2006, 02:01 PM
  2. array of structures, data from file
    By nomi in forum C Programming
    Replies: 5
    Last Post: 01-11-2004, 01:42 PM
  3. C diamonds and perls :°)
    By Carlos in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 05-16-2003, 10:19 PM
  4. Warnings, warnings, warnings?
    By spentdome in forum C Programming
    Replies: 25
    Last Post: 05-27-2002, 06:49 PM
  5. Array Data Structures
    By Unregistered in forum C Programming
    Replies: 2
    Last Post: 03-27-2002, 06:52 PM