I wonder if there is an alternative for the std::vector in C? I found this implementation but it seems to contain some issues with memory reallocation.

link|improve this question

46% accept rate
1  
which part of std::vector is bothering you that you're looking for an alternative implementation? – Peyman Feb 7 '11 at 17:38
3  
@Peyman: maybe he doesn't have a C++ compiler... – Pablo Santa Cruz Feb 7 '11 at 17:40
1  
I am developing some code for the SmartXA2 based microcontroller and there is only a C compiler for it. – ezpresso Feb 7 '11 at 17:43
3  
if this is an embedded system there may also be limits on malloc, memcpy and a limited amount of memory - you may be better off allocating a fixed maximum array at the start – Martin Beckett Feb 7 '11 at 17:58
feedback

3 Answers

up vote 6 down vote accepted

While reading C Array vs. C++ Vector, I found an interesting implementation of a simple vector container in C, which also includes push/pop operations. It's worth reading it!

link|improve this answer
feedback

You can give glib a try. Here's what you need to know to do arrays.

glib is actively maintained, cross platform, open source, and it doesn't stop on array/vectors. You also have hash tables, linked lists, queues and many other data structures.

link|improve this answer
I doubt glib is a good choice for an embedded system. – Alexandre C. Feb 7 '11 at 18:17
You are probably right. He didn't mention he was going to use it in an embedded system when I answered the question though... – Pablo Santa Cruz Feb 7 '11 at 18:31
feedback

If you focus is on mathematics you can work with GSL, there have a more bare bones math centric concept.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.