Content deleted Content added
Bluelinking 1 books for verifiability.) #IABot (v2.1alpha3 |
Fixed typo. Tags: Mobile edit Mobile web edit |
||
Line 2:
In [[computer science]], a '''dynamic array''', '''growable array''', '''resizable array''', '''dynamic table''', '''mutable array''', or '''array list''' is a [[random access]], variable-size list [[data structure]] that allows elements to be added or removed. It is supplied with standard libraries in many modern mainstream programming languages. Dynamic arrays overcome a limit of static [[array data type|arrays]], which have a fixed capacity that needs to be specified at allocation.
A dynamic array is not the same thing as a [[dynamic memory allocation|dynamically allocated
== Bounded-size dynamic arrays and capacity ==
|