Is there a dynamic array implementation in glibc or any of the standard Linux libraries for C? I want to be able to add to a list without worrying about its size. I know std::vector exists for C++, but I need the C equivalent.
|
|
|
|
|
|
|
I guess you are thinking of realloc. But its better to wrap a list in a structure to keep track of its current length Example API
|
|||
|
|
|
There is a dynamic array in glib. (not glibc though) Check out GArray and GPtrArray. A dynamic array is not really the same thing as a linked list though. Anyways this is the most useful resource I've been able to find when learning glib. |
||
|
|
|
|
I always use realloc for this, you could wrap your own array functions around it. AFAIK, there are no other built-in things for this. |
||||||||
|
|
|
You can also use obstacks |
||
|
|
