Data Structures and Algorithm
Data Structures and Algorithm
Syllabus for Post graduate Diploma in Data Science, 1st Semester With effective
Subject Name: Data Structures and Algorithm from academic
Subject Code: 1618001 year 2020-21
Objectives
To learn about how to choose appropriate data structures, understand the
ADT/libraries, and use it to design algorithms for a specific problem.
To understand the necessary mathematical abstraction to solve problems.
The student should be able to choose appropriate algorithms and use it for a specific
problem.
Unit Topic(s) No. of
No. Hours
1. Introduction to Data Structure 2
Data Management concepts, Data types – primitive and non-primitive,
Performance Analysis and Measurement, Average, best and worst case
analysis, Types of Data Structures- Linear & Non Linear Data Structures
2. Linear Data Structures 14
Array: Representation of arrays, Applications of arrays, sparse matrix and its
representation
Stack: Stack-Definitions & Concepts, Operations on Stacks, Applications of
Stacks, Polish Expression, Reverse Polish Expression, Recursion, Tower of
Hanoi
Queue: Representation of Queue, Operations on Queue, Circular Queue,
Priority Queue, Double Ended Queue, Applications of Queue
Linked List: Singly Linked List, Doubly Linked list, Circular linked list,
Applications of linked list
3. Nonlinear Data Structures 10
Tree-Definitions and Concepts, Representation of binary tree, Binary tree
traversal, Binary search trees, Applications of Trees, AVL trees, 2-3 trees,
Graph-Matrix Representation of Graphs, Graph Traversal Methods, Spanning
Trees, Shortest path, Minimal spanning tree
4. Sorting & Searching 6
Bubble Sort, Selection Sort, Quick Sort, Merge Sort, Sequential Search, Binary
Search
5. Greedy Algorithms 4
General Characteristics of greedy algorithms, Activity selection problem, The
Knapsack Problem, Job Scheduling Problem, Huffman code
6. Dynamic Programming 4
Introduction, The Principle of Optimality, Knapsack problem, All Points
Shortest path, Matrix chain multiplication.
Page no. 1 of 3
GUJARAT TECHNOLOGICAL UNIVERSITY
Syllabus for Post graduate Diploma in Data Science, 1st Semester With effective
Subject Name: Data Structures and Algorithm from academic
Subject Code: 1618001 year 2020-21
Reference Books
1. Fundamentals of Data Structures in C++
by Sartaj Sahani
Galgotia Publications Pvt. Ltd., 2009
2. Introduction to Algorithms
by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest and Clifford Stein
PHI, Second edition
3. Fundamental of Algorithms
by Gills Brassard, Paul Bratley
PHI
4. Fundamentals of Computer Algorithms
by Horowitz, Sahni
Galgotia Publications Pvt. Ltd., 2001 ed.
5. An Introduction to Data Structures with Applications
by Jean-Paul Tremblay & Paul G.
Sorenson Publisher-Tata McGraw Hill
Outcomes
After completion of this subject, students would be able to:
Differentiate primitive and non-primitive structures.
Design and apply appropriate data structures for solving computing problems.
Apply sorting and searching algorithms to the small and large data sets.
Explain the major graph algorithms and their analyses. Employ graphs to model
data science problems wherever appropriate.
Suggested list of Practical (at least 10 practical are to be performed by students. These
practical should cover majority of all topics of syllabus.)
This is the suggested list of practical but it may not be limited only to this list.
1. Implement a program for stack that performs following operations using array.
(a) PUSH (b) POP (c) PEEP (d) CHANGE (e) DISPLAY
2. Implement a program to convert infix notation to postfix notation using stack
3. Write a program to implement QUEUE using arrays that performs following
Page no. 2 of 3
GUJARAT TECHNOLOGICAL UNIVERSITY
Syllabus for Post graduate Diploma in Data Science, 1st Semester With effective
Subject Name: Data Structures and Algorithm from academic
Subject Code: 1618001 year 2020-21
Page no. 3 of 3