These dynamic arrays increases the memory in folds.
ArrayList - default capacity 10
int newCapacity = (oldCapacity * 3)/2 + 1;
Vecor - default capacity
int newCapacity = (capacityIncrement > 0) ?
(oldCapacity + capacityIncrement) : (oldCapacity * 2);
So its better to initialize these objects with proper initial capacity to avoid performance issues.
No comments:
Post a Comment