Time to go back in time for a lesson. While we don't think about these things much in our fancy managed languages today, they are built on the same foundation, so lets look at how memory is managed in C.
In C, an Array is simply a pointer with an offset, the offset specifies how far in memory to look. This provides 0(1) access time.
All other data structures either build upon this, or do not use aligned memory for storage, resulting in poor random access look up time (Though there are other benefits to not using sequential memory).
For example, lets say we have an array with 6 numbers in it, in memory it would look like this:
=====================================
| 0 | 1 | 2 | 3 | 4 | 5 |
=====================================
In an array, we know that each element is next to each other in memory. A C array (Called MyArray here) is simply a pointer to the first element:
=====================================
| 0 | 1 | 2 | 3 | 4 | 5 |
=====================================
^
MyArray
If we wanted to look up MyArray[4], internally it would be accessed like this:
=====================================
| 0 | 1 | 2 | 3 | 4 | 5 |
=====================================
^
MyArray + 4 ---------/
Because we can directly access any element in the array by adding the offset to the pointer, we can look up any element in the same amount of time, regardless of the size of the array. This means that getting MyArray[1000] would take the same amount of time as getting MyArray[5].
An alternative data structure is a linked list. This is a linear list of pointers, each pointing to the next node
P1 -> P2 -> P3 -> P4 -> P5
If I want to access P3, I can't directly access it, because I don't know where it is in memory. All I know is where the root (P1) is, so instead I have to start at P1, and follow each pointer to the desired node. This is a O(N) lookup time (The lookup cost increases as each element is added). It is much more expensive to get to P1000 compared to getting to P4.
More complex data structures, such as hashtables, stacks and queues all use an array (or multiple arrays) internally. Linked Lists and Binary Tree's use nodes and pointers.
You might wonder why anyone would use a data structure that requires linear traversal to look up a value instead of just using an array, but they have their uses.
Take our array again. This time, I want to find the array element that holds the value '5'.
=====================================
| 0 | 1 | 2 | 3 | 4 | 5 |
=====================================
^ ^ ^ ^ ^ FOUND!
In this situation, I don't know what offset to add to the pointer to find it, so I have to start at 0, and work my way up until I find it. This means I have to perform 6 checks.
A binary tree organizes its data in a special fashion (that is far beyond the scope of this talk), so that when searching it, we are able to skip a large amount of nodes.
That is where arrays get beat, they provide O(N) search time, despite O(1) access time.
This is an incredibly high level overview on arrays in memory, skipping over a lot of details, but hopefully it illustrates to an arrays strength and weakness.