7. Data Structures and Algorithms - Arrays
7. Data Structures and Algorithms - Arrays
Algorithms - Arrays
Array is a container which can hold a fix number of items and these items
should be of the same type. Most of the data structures make use of arrays
to implement their algorithms. Following are the important terms to
understand the concept of Array.
Element − Each item stored in an array is called an element.
Index − Each location of an element in an array has a numerical index,
which is used to identify the element.
Array Representation
Arrays can be declared in various ways in different languages. For
illustration, let's take C array declaration.
Arrays can be declared in various ways in different languages. For
illustration, let's take C array declaration.
Typecode are the codes that are used to define the type of value the array will hold.
Some common typecodes used are:
Before looking at various array operations lets create and print an array using
python.
The below code creates an array named array1.
When we compile and execute the above program, it produces the following result −
Output
Accessing Array Element
We can access each element of an array using the index of the element.
The below code shows how
When we compile and execute the above program, it produces the following result which shows the
element is inserted at index position 1.
Output
Deletion Operation
Deletion refers to removing an existing element from the array and re-organizing all
elements of an array.
Here, we remove a data element at the middle of the array using the python in-
built remove() method.
When we compile and execute the above program, it produces the following
result which shows the index of the element. If the value is not present in the
array then the program returns an error.
Output
Update Operation
Update operation refers to updating an existing element from the array at a given
index.
Here, we simply reassign a new value to the desired index we want to update.
When we compile and execute the above program, it produces the
following result which shows the new value at the index position 2.
Output