vote up 2 vote down star
1

There are different ways of creating dynamic strings in C (with length that constantly changes). After some google search, the main way of doing this is to use realloc().

A way I implemented this is using linked lists with 32 bytes chunks for each node.

I was wondering if there are better ways of tackling this apart from using realloc() and linked lists, and what the cons and pros for each method are.

EDIT The reason I am doing this is because I'm receiving dynamic data from a socket recv(), and was looking for a flexible way of storing it, without allocating huge amounts of data that aren't needed.

flag

78% accept rate
It would help if you posted why you are doing this. You've essentially written a mini-memory manager and I can see no particular advantage you will gain from this(only problems) – JaredPar Mar 22 at 20:59
Ok, I added the reason. It's also an interesting topic for people to understand, too bad it's being downvoted. – Luca Matteis Mar 22 at 21:07
with the reason it is interesting, without the reason it was just strange.... – Johan Mar 22 at 21:17

4 Answers

vote up 3 vote down check

You can realloc to different predefined sizes. For example, when the buffer is full, double its size.

Using a linked list is a good idea, but the data is not continuous (you can't pass the whole structure to printf, for example) and indexing takes more calculations (O(N)). A major advantage is that appending strings (at either end) is O(1).

link|flag
vote up 2 vote down

I think you're looking for Scatter-Gather I/O, the function you'd be looking for would be readv().

link|flag
vote up 1 vote down

If you do use realloc(), don't add a constant amount of space on every realloc, because then the cost of producing a string of length n will be an O(n^2) (realloc will probably allocate a new region and copy the data there, i.e. its complexity is not constant but O(n)). The easiest way to do it is to double the size of the buffer on every realloc, then the amortized cost will still be O(n).

link|flag
Realloc can take advantage of memory pages. If a page is 8k, and a string is 17k, 16k can be in two 8k pages and the other 1k moved around. It's more complicated than that, though. – strager Mar 22 at 21:52
vote up 1 vote down

Using 32 byte chunks means that the ratio between data and overhead is terrible - you have your pointer in the linked list and at least (probably much more) the same again from the memory allocator. I would strongly suggest allocating a much larger chunk of memory and grow it exponentially to fit and see if this causes problems. Only if you encounter problems would I go the linked list route.

link|flag

Your Answer

Get an OpenID
or

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