Thread: Library for data manipulation (similar to STL in C++)

  1. #1
    Registered User zub's Avatar
    Join Date
    May 2014
    Location
    Russia
    Posts
    104

    Library for data manipulation (similar to STL in C++)

    In the book "97 things every programmer should know" said that the invention of bicycles can be useful. So we know how it works, and gaining experience. That's fine, but I've reached the stage where I want to ride a bike, rather than reinvent it. It is better to use a mass produced bike. So I wonder what you use instead of STL? I know of the existence of SGLIB and several alternatives. Do you use such tools?
    Our goals are clear, tasks are defined! Let's work, comrades! -- Nikita Khrushchev

  2. #2
    Registered User MacNilly's Avatar
    Join Date
    Oct 2005
    Location
    CA, USA
    Posts
    466
    If I was working on a GTK/GDK app I would use the data structures from glib. If I intended to make something that didn't need a GUI I would not use glib or any other gigantic framework. All else being equal, its better to minimize dependencies. There are a number of data structure libraries for C, my favorite is GDSL. I would bet that many C programmers have already written their own libraries and use those, however.

  3. #3
    Registered User zub's Avatar
    Join Date
    May 2014
    Location
    Russia
    Posts
    104
    A few clarifications: I use Windows and Tiny C Compiler. Most comfortable for me the following options:

    1. Library is a source code that can easily be included (a vivid example is SGLIB, it consist of one h-file).
    2. Library is the big precompiled Windows DLL with plain C-API. It is the most convenient way for me!
    3. Library is source code that can easily be compiled to Windows DLL. I mean NOT monsters, such as Glib.
    Our goals are clear, tasks are defined! Let's work, comrades! -- Nikita Khrushchev

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Graphic Manipulation Library
    By MathewCollins in forum C++ Programming
    Replies: 2
    Last Post: 09-06-2010, 01:57 AM
  2. Library for clicks and keys manipulation
    By lautarox in forum C Programming
    Replies: 3
    Last Post: 11-17-2008, 04:18 PM
  3. Library functions eg. String manipulation function
    By bhupesh.kec in forum C Programming
    Replies: 6
    Last Post: 07-08-2008, 07:32 AM
  4. How to store many similar data items
    By Astra in forum C Programming
    Replies: 2
    Last Post: 10-23-2006, 05:40 AM
  5. Replies: 2
    Last Post: 04-30-2005, 12:20 AM