Deletion

Deletion from an array is the process of eliminating the value at a particular index.

Let’s return to our original example array, and delete the value at index 2. In our example, this would be the "cucumbers".

Step #1: We delete "cucumbers" from the array:

images/chapter2/understanding_arrays_Part16.png

While the actual deletion of "cucumbers" technically took just one step, we now have a problem: we have an empty cell sitting smack in the middle of our array. An array is not allowed to have gaps in the middle of it, so to resolve this issue, we need to shift "dates" and "elderberries" to the left.

Step #2: We shift "dates" to the left:

Step #3: We shift "elderberries" to the left: ...

Get A Common-Sense Guide to Data Structures and Algorithms 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.