Content deleted Content added
References to linked list and gap buffer. |
|||
Line 56:
[[C++]]'s <code>std::vector</code> is an implementation of dynamic arrays, as are the <code>ArrayList</code> classes supplied with the [[Java programming language|Java]] API and the [[.NET Framework]]. The generic <code>List<></code> class supplied with version 2.0 of the .NET Framework is also implemented with dynamic arrays. Many scripting languages such as [[Perl]] offer dynamic arrays as a built-in primitive data type.
== See also ==
* [[Gap buffer]], a data structure that improves the performance of dynamic arrays under some circumstances.
* [[Linked list]], an alternative to dynamic arrays, offering more efficient modification at the cost of less efficient seek.
== References ==
|