Rebuilding the world’s most popular data structure.The simple array is probably the most popular data structure in programming. It’s a straightforward yet powerful tool — it lets you represent an ordered list of items with fast random access. It doesn’t matter if you’re looking for index 1 or index 500 — with the array, both…
