© Elshad Karimov 2020
E. KarimovData Structures and Algorithms in Swifthttps://doi.org/10.1007/978-1-4842-5769-2_1

1. Arrays

Elshad Karimov1 
(1)
New York, New York, USA
 

In this chapter, you will learn about arrays, their built-in properties, and how to retrieve, add, and remove elements from them.

Introduction

An array is simply a container that can hold multiple data (values) of any data type in an ordered list; this means that you get the elements in the same order as you defined the items in the array. Instead of declaring individual variables, such as number0, number1, and so on … until number99, you declare one array variable such as numbers and use numbers[0], numbers[1], and numbers[99] to represent individual variables.

The simplest type of ...

Get Data Structures and Algorithms in Swift: Implement Stacks, Queues, Dictionaries, and Lists in Your Apps now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.