Introduction

In this lesson, we'll go over some basic array concepts, most of which you might already know.

Arrays

Arrays are an integral part of many advanced algorithms and data structures. Many of them will require you to know how to perform operations, how to perform optimizations, and what the limitations are.

We’ll go over some commonly used terms and their meaning.


Subarray

A subarray is a contiguous part of the array. I’ll be using this notation to denote subarray A[i...j]A[i...j]. This represents a subarray of the array AA containing all the elements from ithith to jthjth index, both inclusive. For example:

A=[1,2,3,4]A = [1,2,3,4]

A[1..3]=[2,3,4]A[1..3] = [2,3,4]

An array of size NN has an order of N2N^2 subarray. N(N1)2+N\frac{N*(N-1)}{2} + N to be exact.

NN subarrays of size 11 and (N2){N\choose2} subarrays of size > 1 (Pick any 2 index)


Subsequence

A subsequence of an array can be obtained by deleting some (or none, or all) elements of the original array without changing the order of elements. For example:

Few subsequences for A=[1,2,3,4]A = [1, 2, 3, 4] are [1,2,3][1, 2, 3], [1][1] including an empty array [][].

[3,1][3, 1] is not a subsequence because the order is not the same as the original array.

An array of size NN has 2N2^N subsequences, meaning for each element in the array, we have 2 choices (keep it or remove it).


Contiguous memory allocation

Array elements occupy contiguous memory blocks, and we have the following properties as a result:

Element access is O(1)O(1) operation

Since we know the starting address, any arbitrary element’s address is simple arithmetic.

Inserting element in between is O(N)O(N) operation

Consider you have an array of size 1010 allocated and it only has 55 elements A[0...4]A[0...4]. To insert an element at position 22, we have to shift A[2..4]A[2..4] to the right by one place. In the worst case, we’ll have to shift the entire array (N operations).


Get hands-on with 1200+ tech skills courses.