In Java is there any existing class that stores 10-1000+ values, has fast insertion and removal of values without allocating, is preferably growable, and is contiguous in memory? If not is there anything close?
Just trying to find out if I need to roll my own like I have in C++ or if Java already provides something that would be suitable.

