I'm currently having a bit of trouble with arrays of structs (specifically, my array is so big that it takes up seven megabytes of memory), and I'm beginning to question whether I really need to declare all the structs at one time and hog the memory like that, rather than increment it proportionally as new structs are needed (the program reads stuff from a file, and I store the data from the file in the structs; but the number of things it needs to read from the file is unpredictable). What alternative can I use so that the program can refer to individual, unique structs, but doesn't need the exact number of structs in advance?
|
Linked lists? Or any other more advanced data structures, depending on your purpose, but in any case some reading seems to be in order :) Or if you're doing C++, just use std::list. |
|||
|
|
|
Two ways come up to my mind:
for the linked list solution you would just need another struct
Which one to choose mainly depends on the frequency with which new items must be added to the data structure, if it is done in batch then reallocing would be quite efficient, otherwise you'll do many reallocs (you can always use an approach similar to the one used for hashmaps and increment it always by a big amount, eg by doubling the capacity). If you need fast random access forget about linked lists. |
|||||
|
|
You can use a |
||||
|
mallocandrealloc? (Don't forgetfree, then.) – Daniel Fischer May 27 '12 at 22:36