Data Structure and Algorithm (LAB MANUAL)
Data Structure and Algorithm (LAB MANUAL)
CS 201
1. : DATA STRUCTURE.
1.1: WHAT IS DATA STRUCTURE?
A data structure is a systematic way of organizing and
accessing data
A data structure tries to structure data
1.4: ARRAY
1.7: QUEUE
1.8: TREE:
Data frequently contain a hierarchical relationship between
various elements. This non-linear Data structure which
reflects this relationship is called a rooted tree graph or, tree
This structure is mainly used to represent data containing a
hierarchical relationship between elements, e.g. record, family
tree and table of contents
A tree consist of a distinguished node r , called the root and
zero or more (sub) tree t1 , t2 , ... tn , each of whose roots are
connected by a directed edge to r
In the tree of figure, the root is A, Node t 2 has r as a parent
and t 2.1 , t 2.2 and t 2.3 as children. Each node may have
arbitrary number of children, possibly zero. Nodes with no
children are known as leaves
1.9: Graph
A graph consists of a set of nodes (or Vertices ) and a set
of arc (or edge ). Each arc in a graph is specified by a pair of
nodes. A node n is incident to an arc x if n is one of the two
nodes in the ordered pair of nodes that constitute x.
The degree of a node is the number of arcs incident to it.
The indegree of a node n is the number of arcs that have n as
the head, and the outdegree of n is the number of arcs that
have n as the tail
The graph is the nonlinear data structure. The graph shown in
the figure represents 7 vertices and 12 edges. The Vertices are
{ 1, 2, 3, 4, 5, 6, 7} and the arcs are {(1,2), (1,3), (1,4), (2,4),
(2,5), (3,4), (3,6), (4,5), (4,6), (4,7), (5,7), (6,7) }. Node (4) in
figure has indegree 3, outdegree 3 and degree 6
Lab Session 02
ALGORITHM
2: ALGORITHMS BASICS:
Algorithm is a step-by-step procedure, which defines a set of
instructions to be executed in a certain order to get the
desired output. Algorithms are generally created independent
of underlying languages, i.e. an algorithm can be
implemented in more than one programming language.
From the data structure point of view, following are some
important categories of algorithms −
Search − Algorithm to search an item in a data structure.
Sort − Algorithm to sort items in a certain order.
Insert − Algorithm to insert item in a data structure.
Update − Algorithm to update an existing item in a data
structure.
Delete − Algorithm to delete an existing item from a
data structure.
2. 1: CHARACTERISTICS OF AN ALGORITHM
Not all procedures can be called an algorithm. An algorithm
should have the following characteristics −
Unambiguous − Algorithm should be clear and
unambiguous. Each of its steps (or phases), and their
inputs/outputs should be clear and must lead to only one
meaning.
Input − An algorithm should have 0 or more well-
defined inputs.
Output − An algorithm should have 1 or more well-
defined outputs, and should match the desired output.
Finiteness − Algorithms must terminate after a finite
number of steps.
Feasibility − Should be feasible with the available
resources.
Independent − An algorithm should have step-by-step
directions, which should be independent of any
programming code.
2.2 : HOW TO WRITE AN ALGORITHM?
There are no well-defined standards for writing algorithms.
Rather, it is problem and resource dependent. Algorithms are
never written to support a particular programming code.
As we know that all programming languages share basic code
constructs like loops (do, for, while), flow-control (if-else),
etc. These common constructs can be used to write an
algorithm.
We write algorithms in a step-by-step manner, but it is not
always the case. Algorithm writing is a process and is
executed after the problem domain is well-defined. That is,
we should know the problem domain, for which we are
designing a solution.
Example
Let's try to learn algorithm-writing by using an example.
Problem − Design an algorithm to add two numbers and
display the result.
Step 1 − START
Step 2 − declare three integers a, b & c
Step 3 − define values of a & b
Step 4 − add values of a & b
Step 5 − store output of step 4 to c
Step 6 − print c
Step 7 − STOP
Algorithms tell the programmers how to code the program.
Alternatively, the algorithm can be written as −
Step 1 − START ADD
Step 2 − get values of a & b
Step 3 − c ← a + b
Step 4 − display c
Step 5 − STOP
In design and analysis of algorithms, usually the second
method is used to describe an algorithm. It makes it easy for
the analyst to analyse the algorithm ignoring all unwanted
definitions. He can observe what operations are being used
and how the process is flowing.
Writing step numbers, is optional.
We design an algorithm to get a solution of a given problem.
ALGORITHM
Step 1: Initialize the variables i,j,n, curr and temp.
Step 2: Get the number of elements.
Step 3: Get the numbers to be sorted.
Step 4: If the second element is less than the first element then
assign it to temp.
Step 5: Assign the first element to second element.
Step 6: Assign Temp to first element.
Step 7: The swapping is done
Step 8: The data is sorted.
PROGRAM
#include<stdio.h>
#include<conio.h>
voidinsertion_sort(int a[]);
void main()
{intarr[10],i;
printf("Enter the elements of the array");
for(i=0;i<10;i++)
{
scanf("%d",&arr[i]);
}
insertion_sort(arr);
getch();
}
voidinsertion_sort(int a[])
{
intk,j,temp,n;
n=10;
for(k=1;k<=(n-1);k++)
{
temp=a[k];
j=k-1;
while(temp<=a[j] && j>=0)
{
a[j+1]=a[j];
j=j-1;
}
a[j+1]=temp;
}
printf("sorted array is:");
for(k=0;k<10;k++)
{ printf("%d\n",a[k]);
}
OUTPUT:
STUDENT’S WORK:
RESULT:
The elements were successfully arranged in ascending order using
insertion sort
Lab Session 03
SELECTION SORT
OBJECT:
To arrange the numbers in ascending order using selection sort.
THEORY:
Selection sort is a simple sorting algorithm. This sorting
algorithm is an in-place comparison-based algorithm in
which the list is divided into two parts, the sorted part at the
left end and the unsorted part at the right end. Initially, the
sorted part is empty and the unsorted part is the entire list.
The smallest element is selected from the unsorted array and
swapped with the leftmost element, and that element becomes
a part of the sorted array. This process continues moving
unsorted array boundary by one element to the right.
This algorithm is not suitable for large data sets as its average
and worst case complexities are of Ο(n 2), where n is the
number of items.
DEFINITION:
Selection sort is a simple sorting algorithm. This sorting
algorithm is an in-place comparison-based algorithm in
which the list is divided into two parts, the sorted part at the
left end and the unsorted part at the right end. Initially, the
sorted part is empty and the unsorted part is the entire list.
The smallest element is selected from the unsorted array and
swapped with the leftmost element, and that element becomes
a part of the sorted array. This process continues moving
unsorted array boundary by one element to the right.
This algorithm is not suitable for large data sets as its average
and worst case complexities are of Ο(n 2), where n is the
number of items
HOW SELECTION SORT WORKS?
Consider the following depicted array as an example.
For the first position in the sorted list, the whole list is
scanned sequentially. The first position where 14 is stored
presently, we search the whole list and find that 10 is the
lowest value.
STUDENT’S WORK:
RESULT:
The elements were successfully arranged in ascending order using
selection sort.
Lab Session 04
MERGE SORT
OBJECT:
To sort the given elements using Merge sort.
THEORY:
Merge sort is a sorting technique based on divide and conquer
technique. With worst-case time complexity being Ο(n log n), it is
one of the most respected algorithms.
Merge sort first divides the array into equal halves and then combines
them in a sorted manner.
HOW MERGE SORT WORKS?
To understand merge sort, we take an unsorted array as the following
−
We know that merge sort first divides the whole array iteratively into
equal halves unless the atomic values are achieved. We see here that
an array of 8 items is divided into two arrays of size 4.
After the final merging, the list should look like this −
ALGORITHM:
Step 1: Initialize the variables i,j,n,h,k,low,high.
Step 2: Get the number of elements.
Step 3: Get the numbers to be sorted.
Step 4: If low is less than high then find the mid value.
Step 5: Initialize h and i to low.
Step 6: Initialize a[h] to b[i] else a[j] to b[i].
Step 7: If h is greater than mid then a[k] == b[i] else b[k] ==
a[k]
Step 8 The data is sorted and printed.
PROGRAM:
#include<stdio.h>
#include<conio.h>
intarr[10];
voidmerge_sort(intarr[],int beg, int end);
void merge(int a[],intbeg,intmid,int end);
void main()
{
inti;
clrscr();
printf("Enter the array");
for(i=0;i<10;i++)
{
scanf("%d",&arr[i]);
}
merge_sort(arr,0,9);
printf("array");
for(i=0;i<10;i++)
{
printf("%d",&arr[i]);
}
getch();
}
voidmerge_sort(intarr[],intbeg,int end)
{inti;
if(beg<end)
{int mid=(beg+end)/2;
merge_sort(arr,beg,mid);
merge_sort(arr,mid+1,end);
merge(arr,beg,mid,end);
}}
void merge(intarr[],intbeg,intmid,int end)
{inti,j,index,temp[10];
i=beg;
j=mid+1;
index=beg;
while(i<=mid && j<=end)
{if(arr[i]<arr[j])
{temp[index]=arr[i];
i=i+1;
}
else
{temp[index]=arr[j];
j=j+1;
}
index=index+1;
}
if(i>mid)
{ while(j<=end)
{ temp[index]=arr[j];
index=index+1;
j=j+1;
}}
Else
{ while(i<=mid)
{temp[index]=arr[i];
index=index+1;
i=i+1;
}}
for(i=beg;i<index;i++)
{ arr[i]=temp[i];
}}
OUTPUT:
STUDENT’S WORK:
RESULT:
Hence the program for Sorting an array using merge sort was
successfully executed
Lab Session 05
QUICK SORT
OBJECT:
To sort the given elements using Quick sort.
THEORY:
Quick sort is a highly efficient sorting algorithm and is based
on partitioning of array of data into smaller arrays. A large
array is partitioned into two arrays one of which holds values
smaller than the specified value, say pivot, based on which
the partition is made and another array holds values greater
than the pivot value.
Quick sort partitions an array and then calls itself recursively
twice to sort the two resulting subarrays. This algorithm is
quite efficient for large-sized data sets as its average and
worst case complexity are of Ο(n2), where n is the number of
items.
ALGORITHM:
Step 1: Initialize the variables i,j,n,r,p,q.
Step 2: Get the number of elements.
Step 3: Get the numbers to be sorted.
Step 4: If p is less than q then the function is called.
Step 5: If i is less than j, then interchange them.
Step 6: If I is less than pivort interchange them.
Step 7: The data is sorted and printed.
PROGRAM:
#include<stdio.h>
#include<conio.h>
int part(int a[],intbeg,intend,intloc);
void quicksort(int a[],intbeg,int end);
int a[10];
void main()
{inti;
printf("enter the array");
for(i=0;i<10;i++)
{ scanf("%d",&a[i]);
}
quicksort(a,0,9);
printf("sorted");
for(i=0;i<10;i++)
{ printf("%d\n",a[i]);
}
getch();
}
void quicksort(int a[],intbeg,int end)
{ intloc=beg;
if(beg<end)
{if(loc==beg)
{loc= part(a,beg,end,loc);
}
quicksort(a,beg,loc-1);
quicksort(a,loc+1,end);
}}
int part(int a[],intbeg,intend,intloc)
{intleft,temp,right,flag,i;
left=beg;
right=end;
loc=beg;
flag=0;
while(flag==0)
{ while((a[loc]<=a[right]) &&loc!=right)
{ right=right-1;
}
if(loc==right)
{ flag=1;
}
else if(a[loc]>a[right])
{ temp= a[loc];
a[loc]=a[right];
a[right]=temp;
loc=right;
}
if(flag==0)
{ while((a[loc]>=a[left]) &&loc!=left)
{ left=left+1;
}}
if(loc==left)
{ flag=1;
}
else if(a[loc]<a[left])
{ temp=a[loc];
a[loc]=a[left];
a[left]=temp;
loc=left;
}}
returnloc;
}
OUTPUT:
STUDENT’S WORK:
RESULT:
Hence the program for Sorting an array using quick sort was successfully
executed.
Lab Session 06
STACKS
OBJECT:
To write a menu driven program to perform following operations on
the stack-
(i)Push (ii)Pop (iii) Peek
THEORY:
A stack is an Abstract Data Type (ADT), commonly used in
most programming languages. It is named stack as it behaves
like a real-world stack, for example – a deck of cards or a pile
of plates, etc.
A real-world stack allows operations at one end only. For
example, we can place or remove a card or plate from the top
of the stack only. Likewise, Stack ADT allows all data
operations at one end only. At any given time, we can only
access the top element of a stack.
This feature makes it LIFO data structure. LIFO stands for
Last-in-first-out. Here, the element which is placed (inserted
or added) last, is accessed first. In stack terminology,
insertion operation is called PUSH operation and removal
operation is called POP operation.
ALGORITHM:
Step 1: Initialize the integer variables.
Step 2: In a switch case, in case 1 the number to be pushed is
got
Step 3:Top is now equal to top+1
Step 4: Else the stack is full
Step 5: In case 2 the number to be deleted is got
Step 6: Top is now equal to top-1
Step 7: Else the stack is empty
Step 8: In case 3 if the top is less than 0 the stack is full
Step 9: Else the stack is printed
Step 10: Default is no such choice
PROGRAM:
#include<stdio.h>
#include<conio.h>
int a[5];int max=4;int top=-1;
void pop();void push();
void peek(); voiddisp();
void main()
{ intj,k;
charch;
clrscr();
do
{ printf("\n1push\n2)pop\n3)peek\n4)Display Stack") ;
scanf("%d",&j) ;
switch(j)
{
case 1: push();break;
case 2: pop();break;
case 3: peek();break;
case 4: disp();break;
default: printf("\ninvalid choice"); }
printf("\nDo you want to continue? (y/n)");
scanf("%s",&ch);
}while(ch=='y');
getch(); }
void push()
{ intval;
if(top==max)
printf("\nstack overflow\n");
else
{ top++;
printf("\nEnter the element");
scanf("%d",&val);
a[top]=val;}}
void pop()
{ intval;
if(top==-1)
printf("\nstack underflow\n");
else
{ val=a[top];
top--;
printf("deleted element %d", val);
}}
void peek(int a[],int top)
{ if(top==-1)
printf("empty stack\n");
else
printf("%d",a[top]);
}
voiddisp()
{ printf("Elemnts of stack are\n");
for(k=0;k<=top;k++)
{
printf("%d",a[k]);
}}
OUTPUT:
STUDENT’S WORK:
RESULT:
Hence the program for implementing stack operations like push,pop
and peek were successfully executed.
Lab Session 06
QUEUES
OBJECT:
To perform queue operations on the menu-
(i)Insert (ii)Delete (iii)Peek (iv)Display
THEORY:
Queue is an abstract data structure, somewhat similar to
Stacks. Unlike stacks, a queue is open at both its ends. One
end is always used to insert data (enqueuer) and the other is
used to remove data (dequeuer). Queue follows First-In-First-
Out methodology, i.e., the data item stored first will be
accessed first.
QUEUE REPRESENTATION:
As we now understand that in queue, we access both ends for
different reasons. The following diagram given below tries to
explain queue representation as data structure.
STUDENT’S WORK:
RESULT :
Hence the program for queue operations was successfully
executed.