Array (data structure): Difference between revisions

Content deleted Content added
Added paragraph about possible errors
Link To Spanish
Line 1:
[[de:array]] [[es:Array]] [[ja:配列]] [[nl:array]] [[pl:Tablica]]
 
An '''array''', also known as a vector or list, is one of the simplest [[data structure]]s in [[computer programming]]. Arrays hold a fixed number of equally sized data elements, generally of the same [[data type]]. Individual elements are accessed by index using [[integer]]s, as opposed to an [[associative array]]. Most [[programming language]]s have arrays as a built-in data type.