Data Structure Practical-1
Data Structure Practical-1
Data Structures
(3130702)
Enrolment No
Name
Branch
Academic Term
Institute Name
CERTIFICATE
completed the Practical / Tutorial work for the subject Data structure (3130702) for
Place: ___________
Date: ___________
Preface
Main motto of any laboratory/practical/field work is for enhancing required skills as well as
creating ability amongst students to solve real time problem by developing relevant competencies
in psychomotor domain. By keeping in view, GTU has designed competency focused outcome-
based curriculum for engineering degree programs where sufficient weightage is given to
practical work. It shows importance of enhancement of skills amongst the students and it pays
attention to utilize every second of time allotted for practical amongst students, instructors and
faculty members to achieve relevant outcomes by performing the experiments rather than having
merely study type experiments. It is must for effective implementation of competency focused
outcome-based curriculum that every practical is keenly designed to serve as a tool to develop
and enhance relevant competency required by the various industry among every student. These
psychomotor skills are very difficult to develop through traditional chalk and board content
delivery method in the classroom. Accordingly, this lab manual is designed to focus on the
industry defined relevant outcomes, rather than old practice of conducting practical to prove
concept and theory.
By using this lab manual students can go through the relevant theory and procedure in advance
before the actual performance which creates an interest and students can have basic idea prior to
performance. This in turn enhances pre-determined outcomes amongst students. Each experiment
in this manual begins with competency, industry relevant skills, course outcomes as well as
practical outcomes (objectives). The students will also achieve safety and necessary precautions
to be taken while performing practical.
This manual also provides guidelines to faculty members to facilitate student centric lab activities
through each experiment by arranging and managing necessary resources in order that the
students follow the procedures with required safety and necessary precautions to achieve the
outcomes. It also gives an idea that how students will be assessed by providing rubrics.
Data Structures is a core course in all computer science undergraduate curricula. The course is
the basis for understanding several data structures and also algorithms that operate on them. The
course forms the foundation for almost all computer science subjects: compilers, operating
systems, databases, AI and software engineering. The course comes with a lab in most universities
in India. The associated lab in university curricula focuses on implementation of algorithms
operating on the data structures, i.e., coding programs on the data structures and algorithms.
Data Structure (3130702) Enrollment No
DTE’s Vision
Institute’s Vision
To transform the students into good human beings, employable engineering graduates
and continuous learners by inculcating human values and imparting excellence in technical
education.
Institute’s Mission
To provide education to students from the local and rural areas, so that they become enlightened
individuals and improve the living standards of their families, and their contribution to industry and
society. To foster a learning environment with technology integration and individual attention, so
that the students imbibe quality technical knowledge, skill-development and character building.
Department’s Vision
To achieve excellence for providing value based education in computer science and Information
Technology through innovation, team work and ethical practices.
Department’s Mission
• Have careers in industry, research & academics focusing on the application of the
information technologies and take leadership positions in the industry and also initiate
businesses offering innovative solutions.
• Capable of adapting to new technologies and constantly upgrade their skills with an
attitude towards lifelong learning.
• Act conscientiously about the potentials and the responsibilities of the computing
profession in the context of science, technology, society and humanity.
Data Structure (3130702) Enrollment No
Sr. CO CO CO CO CO
Practical Outcome/Title of experiment
No. 1 2 3 4 5
2. Queue
6. Tree
7. Graph
8. Searching
9. Sorting
The following industry relevant competencies are expected to be developed in the student by
undertaking the practical work of this laboratory.
1. Will be able to classify data structures and identify storage representation of primitive
and non-primitive data structures
2. Will be able to implement various operations on Stack, Queue, Link list, Tree, Graph,
Hashing and File operations.
3. Will be able to understand need of sorting and searching for various applications
4. Will be able to apply various data structure to design real time applications in efficient
manner.
1. Teacher should provide the guideline with demonstration of practical to the students
with all features.
2. Teacher shall explain basic concepts/theory related to the experiment to the students before
starting of each practical
3. Involve all the students in performance of each experiment.
4. Teacher is expected to share the skills and competencies to be developed in the
students and ensure that the respective skills and competencies are developed in the
students after the completion of the experimentation.
5. Teachers should give opportunity to students for hands-on experience after the
demonstration.
6. Teacher may provide additional knowledge and skills to the students even though not
covered in the manual but are expected from the students by concerned industry.
7. Give practical assignment and assess the performance of students based on task
assigned to check whether it is as per the instructions or not.
8. Teacher is expected to refer complete curriculum of the course and follow the
guidelines for implementation.
1. Students are expected to carefully listen to all the theory classes delivered by the faculty
members and understand the COs, content of the course, teaching and examination scheme,
skill set to be developed etc.
2. Students will have to perform experiments on computer system on which C/C++ compiler
is installed to execute programs of data structure.
3. Students should develop programs and execute all the programs using C/C++ compiler.
Students have to show output of each program in their practical file.
4. Students are instructed to submit practical list as per given sample list shown on next page.
5. Student should develop a habit of submitting the experimentation work as per the schedule
and s/he should be well prepared for the same.
Data Structure (3130702) Enrollment No
Common Safety Instructions
Index
(Progressive Assessment Sheet)
Date
Date of Assessme Sign. of
Sr. Page of Remar
Objective(s) of Experiment submiss nt Teacher
No. No. perfor ks
ion Marks with date
mance
8. Searching
8.1 Write a program to implement Linear
Search.
8.2 Write a program to implement Binary
Search.
8.3 Identify widely used application which use
Searching technique for implementation of
its important feature.
9. Sorting
9.1 Write a program to implement Quick Sort
9.2 Write a program to implement Merge Sort
9.3 Write a program to implement Bubble Sort
9.4 Identify widely used application which use
Sorting technique for implementation of its
important feature.
10. Hashing and File Structure
10.1Write a program to create hash table and
handle the collision using linear probing.
10.2Write a program to demonstrate the file
primitives such as fopen, fclose, fprintf.
10.3Identify widely used application which use
Hashing technique for implementation of
its important feature.
Total
Data Structure (3130702) Enrollment No
Experiment No – 1
AIM : Classification of Data Structure and Stack
Theory:
Data Structure
Data structures are a fundamental concept in computer science that enable efficient storage and
manipulation of data. They are used to organize and store data in a manner that allows for optimal
performance of algorithms. The selection of a suitable data structure begins with the choice of an
abstract data type, which defines the operations that can be performed on the data. Well-designed
data structures can perform a wide range of critical operations while using minimal resources such
as execution time and memory space. In essence, data structure introduction refers to the
arrangement of data in a computer's memory in a way that enables rapid access by the processor for
the required calculations.
Stack
A stack is a data structure that follows the last-in first-out (LIFO) principle, meaning that objects
are inserted and removed from the container in a particular order. In pushdown stacks, only two
Page No
Data Structure (3130702) Enrollment No
operations are allowed: pushing an item onto the stack, and popping an item off the top of the stack.
Access to the stack is limited, as elements can only be added and removed from the top. When an
item is pushed onto the stack, it becomes the new top item. Conversely, when an item is popped off
the stack, it is removed from the top.
To illustrate this concept, consider a stack of books. Just as you can only remove the top book, you
can only add a new book to the top of the stack. A stack can also have a limited capacity. If the
stack is already full and there is no space to add a new item, it is said to be in an overflow state. On
the other hand, if the stack is empty and an item is removed, it is in an underflow state, meaning
that no items are present in the stack to be removed.
A stack is an abstract data structure that operates on the LIFO principle, where the last item added
is the first item to be removed. Items can be inserted and deleted at one end called the top, creating
a structure that resembles a closed tube on one side.
(1) PUSH
(2) POP
Page No
Data Structure (3130702) Enrollment No
1. Primitive data structures: Primitive data structures are simple data structures
constructed using the standard data types of a computer language. Examples of primitive
data structures include variables, arrays, pointers, structures, unions, and more. These
structures are used to build more complex data structures
Linear data structures are arranged as a continuous set of data elements in the memory
and can be constructed using array data types. In linear data structures, the adjacency
relationship between data elements is maintained.
✓ Add an element
✓ Delete an element
✓ Traverse
✓ Sort the list of elements
✓ Search for a data element
✓ Stack
✓ Queue
✓ Tables
✓ List
✓ Linked Lists.
Page No
Data Structure (3130702) Enrollment No
(b) Non-linear Data Structure:
Non-linear data structures are not arranged in a continuous manner and include data
structures such as trees and graphs. These structures can be used to represent complex
relationships between data elements.
✓ Add elements
✓ Delete elements
✓ Display the elements
✓ Sort the list of elements
✓ Search for a data element
✓ Tree
✓ Decision tree
✓ Graph
✓ Forest
1.2 Implement a program for stack that performs following operations using array.
(a) PUSH (b) POP (c) PEEP (d) CHANGE (e) DISPLAY
Program:
#include <stdio.h>
int stack[20];
int top=-1;
int isfull()
{
if (top==20-1)
{
return 1;
}
else
{
return 0;
}
}
int isempty()
{
Page No
Data Structure (3130702) Enrollment No
if (top==-1)
{
return 1;
}
else
{
return 0;
}
}
void push(int x)
{
if (isfull())
{
printf("-->stack is full");
}
else
{
top++;
stack[top]=x;
}
}
int pop()
{
if (isempty())
{
return 0;
}
else
{
return stack[top--];
}
}
int peep()
{
if (isempty())
{
return 0;
}
else
{
return stack[top];
}
Page No
Data Structure (3130702) Enrollment No
}
void display()
{
int n=0;
printf("-->stack:");
while (n<=top)
{
printf("%d ", stack[n]);
n++;
}
printf("\n");
}
int main()
{
int ch;
do
{
printf("\n1.PUSH 2.POP 3.PEEP 4.CHANGE 5.DISPLAY 0.STOP\n");
printf("enter a choice for given operation:");
scanf("%d", &ch);
switch (ch)
{
case 0:
printf("-->exited successfully");
break;
case 1:
int n;
printf("enter an integer element:");
scanf("%d", &n);
push(n);
break;
Page No
Data Structure (3130702) Enrollment No
case 2:
if(top==-1)
{
printf("-->stack is empty\n");
}
else
{
printf("-->%d\n", pop());
}
break;
case 3:
if(peep())
{
printf("-->%d\n", peep());
}
else
{
printf("-->stack is empty\n");
}
break;
case 4:
int i,new;
printf("enter index and new number:");
scanf("%d%d", &i, &new);
change(i,new);
break;
case 5:
display();
break;
default:
printf("-->enter a valid number");
break;
}
}while(ch!=0);
return 0;
}
Page No
Data Structure (3130702) Enrollment No
Output:
1.3 Implement a program to convert infix notation to postfix notation using stack.
Program:
#include <stdio.h>
#define size 20
char stack[size];
int top = -1;
int isfull()
{
if (top == size - 1)
{
return 1;
}
else
{
return 0;
}
}
int isempty()
{
if (top == -1)
{
return 1;
}
Page No
Data Structure (3130702) Enrollment No
else
{
return 0;
}
}
void push(char x)
{
if (isfull())
{
printf("-->stack is full");
}
else
{
top++;
stack[top] = x;
}
}
char pop()
{
if (isempty())
{
return 0;
}
else
{
return stack[top--];
}
}
int stp(char c)
{
switch (c)
{
case '#':
return 0;
case '(':
return 1;
case '+':
case '-':
return 3;
case '*':
case '/':
return 5;
case '^':
Page No
Data Structure (3130702) Enrollment No
return 6;
default:
return 8;
}
}
int np(char c)
{
switch (c)
{
case ')':
return 1;
case '+':
case '-':
return 2;
case '*':
case '/':
return 4;
case '^':
return 7;
case '(':
return 9;
default:
return 8;
}
}
Page No
Data Structure (3130702) Enrollment No
}
}
while (stack[top] != '#')
{
post[j++] = pop();
}
post[j] = '\0';
printf("postfix operation: %s", post);
}
int main()
{
char infix[20];
printf("enter infix expression without space:");
scanf("%s", infix);
itop(infix);
return 0;
}
Output:
Program:
#include<stdio.h>
int main()
Page No
Data Structure (3130702) Enrollment No
{
int n;
printf("enter no of rings:");
scanf("%d", &n);
toh(n,'S','D','A');
return 0;
}
Output:
1.5 Identify widely used application which use stack data structure for implementation of its
important feature.
Stack Applications:
1. Stack is used by compilers to check for balancing of parentheses, brackets and braces.
2. Stack is used to evaluate a postfix expression.
3. Stack is used to convert an infix expression into postfix/prefix form.
4. In recursion, all intermediate arguments and return values are stored on the processor’s
stack.
5. During a function call the return address and arguments are pushed onto a stack and on
return they are popped off.
6. Depth first search uses a stack data structure to find an element from a graph.
Observations:
Conclusion:
A Stack can be used for evaluating expressions consisting of operands and operators.
Stacks can be used for Backtracking, i.e., to check parenthesis matching in an expression. It can
also be used to convert one form of expression to another form. It can be used for systematic
Memory Management.
Quiz:
Suggested Reference:
Marks
Page No