
2 Posts tagged with DYNAMIC ARRAY
How ArrayList grow in size dynamically
A dynamic array is a contiguous area of memory whose size changes dynamically when required. In dynamic arrays the size of the arrays varies over time.
Stack Implementation Using Resizable Arrays
Stack is a linear data structure to store and manipulate data which follows LIFO (Last In First Out) order during adding and removing elements in it.