Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
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

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!

share|improve this answer

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.

share|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

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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