What is the best way to work with a large amount of data?
Assume you have a big text file to work that you need to store and work with, what would be the best way to do that?
I will be adding / removing a lot of elements so I really want to stay away from array resizing overhead.
I don't want to step on any toes here, but would binary trees / linked lists in C++ be a better solution?

