Arrayy Notes
Arrayy Notes
(BCA-C151)
Data Structure Using 'C'
Lecture-2
Array
Definition:
Arrays are defined as the collection of similar type of data items stored at contiguous memory locations.
Arrays are the derived data type in C programming language which can store the primitive type of data
such as int, char, double, float, etc.
Array is the simplest data structure where each data element can be randomly accessed by using its
index number.
For example, if we want to store the marks of a student in 6 subjects, then we don't need to define
different variable for the marks in different subject instead of that, we can define an array which can
store the marks in each subject at a contiguous memory locations.
The array marks[10] defines the marks of the student in10 different subjects where each subject marks
are locate data particular subscript in the array i.e. marks[0] denotes the marks in first subject, marks[1]
denotes the marks in 2nd subject and soon.
1) Each element is of same data type and carries a same size i.e.int = 4bytes.
2) Elements of the array are stored at contiguous memory locations where the first
element is stored at the smallest memory location.
3) Elements of the array can be randomly accessed in we can calculate the address of
each element of the array with the given base address and the size of data element.
For example, in C language, the syntax of declaring an array is like following:
Int arr [10]; char a [10]; float ar [5];
In computer programming, the most of the cases requires to store the large number of data of similar
type. To store such amount of data, we need to define a large number of variables. It would be very
difficult to remember names of all the variables while writing the programs.
Instead of naming all the variables with a different name, it is better to define an array and store all the
elements into it.
Following example illustrates how array can be useful in writing code for a particular problem.
We have marks of a student in six different subjects. The problem intends to calculate the average of
all the marks of the student.
In order to explain the importance of array, we have created two programs, one is without using array
and other involves the use of array to store marks.
#include <stdio.h>
void main()
{
int marks_1=56, marks_2=78, marks_3=88, marks_4=76, marks_5=56, marks_6=89;
float avg;
avg = (marks_1 + marks_2 + marks_3 + marks_4 + marks_5 + marks_6) / 6;
printf ("%f", avg);
}
Program by using array:
#include <stdio.h>
void main()
{
int marks [6]={56, 78, 88, 76, 56, 89};
int i;
float avg;
for ( i = 0; i < 6; i++)
{
avg = avg + marks[i];
}
Printf ("%f", avg);
}
Advantages of Array:
Array provides the single name for the group of variables of the same type therefore, it is easy
to remember the name of all the elements of an array. Traversing an array is a very simple
process; we just need to increment the base address of the array in order to visit each element
one by one. Any element in the array can be directly accessed by using the index.
As we have mentioned, all the data elements of an array are stored at contiguous locations in the main
memory. The name of the array represents the base address or the address of first element in the main
memory. Each element of the array is represented by a proper indexing.
0 (zero – based indexing) : The first element of the array will be arr[0].
1(one – based indexing) : The first element of the array will be arr[1].
n (n – based indexing) : The first element of the array can reside at any random index number.
In the following image, we have shown the memory allocation of an array arr of size 5. The array
follows 0 - based indexing approach. The base address of the array is 100th byte. This will be the address
of arr[0]. Here, the size of int is 4 bytes therefore each element will take 4 bytes in the memory.
In 0 based indexing, If the size of an array is n then the maximum index number, an element can have
is n-1. However, it will be n if we use 1 based indexing.
The name of the array represents the starting address or the address of the first element of the array. All
the elements of the array can be traversed by using the base address. The following example illustrates
how the array can be passed to a function.
Array operations:
Insertion:
For example, if an array arr consists of elements arr={7, 8, 12, 3, 9} and if we want to insert element
27 at position 3 then the new array would be arr={7, 8, 12, 27, 3, 9}(as array starts from index0).
Logic:
We start to iterate from the back. The reason for this is that all the elements after the element which is
inserted will be shifted by one place to the right.
1st iteration for (I = n-1 ; I >= pos; i– –) i.e.for (I = 5-1; I >= 3; i– –) i.e.for(I = 4;4 >=3; i– –)
arr [i+1] = arr [i] i.e. arr [4+1] = arr [4] i.e. arr [5] = arr [4] i.e. arr [5] = 9
2nd iteration for (I = n-1; I >= pos; i– –) i.e. for (i = 3;I >= 3; i– –) i.e. for (i = 3; 3 >=3;I – –)
arr [i+1] = arr[i] i.e. arr [3+1] = arr [3] i.e. arr [4] = arr [3] i.e.arr [4] = 3
Now we come out of the for loop as i (2) is less than pos (3)
Hence our new array would be arr = {7, 8, 12, 27, 3, 9}.
For example, if an array arr consists of elements arr = {7, 8, 12, 3, 9} and if we want to delete element
at position 3 then the new array would be arr = {7, 8, 12, 9} (as array starts from index 0).
Logic:
We start to iterate from the position from which we want to delete the element. The reason for this is
that all the elements after the element which is deleted will be shifted by one place towards the left.
1st iteration for (i= pos; i<n-1; i++) i.e. for (i=3; i<5-1;i++) i.e. for (i=3;i=3<4;i++)
Arr [i] = arr [i+1] i.e. arr[3] = arr [3+1] i.e. arr [3] = arr [4] i.e. arr [3] = 9
Now we move out of the for loop as i will be 4 which is not less than n-1(4).
Time and space complexity of various array operations are described in the following table.
Time Complexity
Space Complexity