Birla Institute of Course Handout Part A: Content Design: Work Integrated Learning Programmes
Birla Institute of Course Handout Part A: Content Design: Work Integrated Learning Programmes
COURSE HANDOUT
Course Objectives
CO1 Introduce mathematical and experimental techniques to analyze algorithms
CO2 Introduce linear and non-linear data structures and best practices to choose appropriate data
structure for a given application
C03 Teach various dictionary data structures (Lists, Trees, Heaps) with illustrations on possible
representation, various operations and their efficiency
CO5 Discuss in detail various algorithm design approaches ( Greedy method, divide and conquer,
dynamic programming, backtracking, and branch and bound) with appropriate examples,
methods to make correct design choice and the efficiency concerns.
CO6 Introduce complexity classes , notion of NP-Completeness, ways of classifying problem into
appropriate complexity class
Text Book(s)
T1 Algorithms Design: Foundations, Analysis and Internet Examples Michael T.
Goodrich, Roberto Tamassia, 2006, Wiley (Students Edition)
LO2 Demonstrate the ability to evaluate algorithms, to select from a range of possible options, to
provide justification for that selection, and to implement the algorithm in a particular
context.
LO3 Solve problems using Algorithms for Linear and Non-Linear Data Structures, Graph
algorithms (Shortest Paths Algorithms, Connectivity and Reachability Algorithms,
Spanning Trees)
LO4 Explain with a practical example, each of the algorithm design strategies (brute-force,
greedy, divide-and-conquer, recursive backtracking, and dynamic programming)
LO6 Relate the real-world problems to known data structures and algorithms leading to the
recommend appropriate solutions in representation and implementation.
LO8 Classify problems into complexity classes P and NP and to prove hardness of problems
Glossary of Terms
1. Contact Hour (CH) stands for a hour long live session with students conducted either in a
physical classroom or enabled through technology. In this model of instruction, instructor led
sessions will be for 22 CH.
a. Pre CH = Self Learning done prior to a given contact hour
b. During CH = Content to be discussed during the contact hour by the course instructor
c. Post CH = Self Learning done post the contact hour
2. Contact Hour (CS) stands for a two-hour long live session with students conducted either in a
physical classroom or enabled through technology. In this model of instruction, instructor led
sessions will be for 11 CS.
a. Pre CS = Self Learning done prior to a given contact session
b. During CS = Content to be discussed during the contact session by the course
instructor
c. Post CS = Self Learning done post the contact session
3. RL stands for Recorded Lecture or Recorded Lesson. It is presented to the student through an
online portal. A given RL unfolds as a sequences of video segments interleaved with
exercises
4. SS stands for Self-Study to be done as a study of relevant sections from textbooks and
reference books. It could also include study of external resources.
5. LE stands for Lab Exercises
6. HW stands for Home Work.
7. M stands for module. Module is a standalone quantum of designed content. A typical course
is delivered using a string of modules. M2 means module 2.
Detailed Structure
Introductory Video/Document: << Introducing the faculty, overview of the course,
structure and organization of topics, guidance for navigating the content, and expectations
from students>>
Each of the sub-modules of Recorded Lectures (RLx.y ) shall delivered via 30 – 60mins
videos followed by:
Contact session (CSx.y) of 2Hr each for illustrating the concepts discussed in the videos with
exercises, tutorials and discussion on case-problems (wherever appropriate); contact sessions
(CS) may cover more than one recorded-lecture (RL) videos.
Course Contents
Contact Hour 1
Time Type Description Content Reference
Pre CH RL1.1
During CH CH1 CH1.1= Introduction T1: 1.1.1-1.1.3
CH1.2 = Algorithms and it’s Specification,
CH1.3 = Random Access Machine Model, Counting
Primitive Operations
CH1.4= Notion of best case, average case and worst
case
Post CH SS1
HW1
LE1
QZ1
Lab Reference
Contact Hour 2
Time Type Description Content Reference
Pre CH RL1.1
During CH CH2 CH2.1 =Use of asymptotic notation (Big-Oh T1: 1.2
Notation, Little-Oh, Omega and Theta Notations)
CH2.2 = Correctness of Algorithms
Post CH SS2 T1 – 1.3
HW2 T1 - R-1.15, R-1.19
LE2
QZ2
Lab Reference
Contact Hour 3
Time Type Description Content Reference
Pre CH
During CH CH3 CH3.1= Analyzing Recursive Algorithms: T1: 1.1.4, Class
CH3.2= Recurrence relations, CH3.3= Specifying Notes
runtime of recursive algorithms,
CH3.4= Solving recurrence equations
Post CH SS3
HW3
LE3
QZ3
Lab Reference
Contact Hour 4
Time Type Description Content Reference
Pre CH RL1.2
During CH CH4 CH4.1 =Stacks: ADT and Implementation, T1: 2.1
Applications
CH4.2= Queues: Queue ADT and Implementation,
Applications
Post CH SS4
HW4
LE4
QZ4
Lab Reference
Contact Hour 5
Time Type Description Content Reference
Pre CH RL1.2
During CH CH5 CH5.1 =List: Notion of position in lists T1: 2.2
CH5.2 = List ADT and Implementation
Post CH SS5
HW5 T1 - R-2.1
LE5
QZ5
Lab Reference
Contact Hour 6
Time Type Description Content Reference
Pre CH RL1.3
During CH CH6 CH6.1 =Trees: Terms and Definition, T1: 2.3.1, 2.3.2
CH6.2= Tree ADT, Applications
CH6.3= Binary Trees : Terms and Definition,
CH6.4= Properties
Post CH SS6
HW6
LE6
QZ6
Lab Reference
Contact Hour 7
Time Type Description Content Reference
Pre CH RL1.3
During CH CH7 CH7.1 =Binary Trees : Representations (Vector T1: 2.3.3
Based and Linked),
C H7.2= Binary Tree traversal (In Order, Pre Order,
Post Order), CH7.3= Applications
Post CH SS7
HW7
LE7
QZ7
Lab Reference
Contact Hour 8
Time Type Description Content Reference
Pre CH RL2.2
During CH CH8 CH8.1 =Heaps: Definition and Properties, T1:2.4.1, 2.4.3
CH8.2 = Representations (Vector Based and
Linked), CH8.3 =Insertion and deletion of elements
Post CH SS8
HW8
LE8
QZ8
Lab Reference
Contact Hour 9
Time Type Description Content Reference
Pre CH RL2.2
During CH CH9 CH9.1 =Heaps: Heap implementation of priority T1: 2.4.2, 2.4.3
queue,
CH9.2 = Heap sort
Post CH SS9 T1 - Section 2.4.2 PQ-Sort
HW9
LE9
QZ9
Lab Reference
Contact Hour 10
Time Type Description Content Reference
Pre CH RL3.1
During CH CH10 CH10.1 =Unordered Dictionary :ADT, Applications T1: 2.5.1, 2.5.2,
CH10.2= Hash Tables: Notion of Hashing and 2.5.3, 2.5.4
Collision (with a simple vector based hash table)
CH10.3 = Hash Functions: Properties, Simple hash
functions
Post CH SS10
HW10
LE10
QZ10
Lab Reference
Contact Hour 11
Time Type Description Content Reference
Pre CH RL3.2
During CH CH11 CH11.1 =Methods for Collision Handling: T1: 2.5.5
CH11.2 = Notion of Load Factor,
CH11.3 = Rehashing,
CH11.4 = Open Addressing
Post CH SS11
HW11
LE11
QZ11
Lab Reference
Contact Hour 12
Contact Hour 13
Time Type Description Content Reference
Pre CH
During CH CH13 CH13.1 =CH12.1 =Greedy Method: Design T1: 5.1.1
Principles and Strategy,
CH12.2 =Fractional Knapsack Problem
Post CH SS13
HW13
LE13
QZ13
Lab Reference
Contact Hour 14
Time Type Description Content Reference
Pre CH
During CH CH14 CH14.1 =Greedy Method Task Scheduling Problem T1:5.1.2
Post CH SS14
HW14
LE14
QZ14
Lab Reference
Contact Hour 15
Time Type Description Content Reference
Pre CH RL2.1
During CH CH15 CH15.1 =Divide and Conquer: Design Principles and T1:5.2.1, 5.2.2
Strategy,
CH15.2 = Analyzing Divide and Conquer
Algorithms CH15.3 = Integer Multiplication
Problem
Post CH SS15
HW15
LE15
QZ15
Lab Reference
Contact Hour 16
Time Type Description Content Reference
Pre CH RL2.1,
RL2.2
During CH CH16 CH16.1 = Merge Sort T1:4.1, 4.3
CH16.2 =Quick Sort
Post CH SS16
HW16
LE16
QZ16
Lab Reference
Contact Hour 17
Time Type Description Content Reference
Pre CH
During CH CH17 CH17.1 =Dynamic Programming: Design Principles T1: 5.3.1, 5.3.2
and Strategy, CH17.2 = Matrix Chain Product
Problem
CH17.3 =0/1 Knapsack Problem
Post CH SS17
HW17
LE17
QZ17
Lab Reference
Contact Hour 18
Time Type Description Content Reference
Pre CH RL5.1,
RL5.2
During CH CH18 CH18.1 = Graphs : Terms and Definitions, T1: 6.1, 6.2,6.3
Properties, CH18.2 = Representations (Edge List,
Adjacency list, Adjacency Matrix)
CH18.3 = Graph Traversals
Post CH SS18 T1: 6.4
HW18
LE18
QZ18
Lab Reference
Contact Hour 19
Time Type Description Content Reference
Pre CH RL 5.4,
RL 5.5
During CH CH19 CH 19.1 =Single Source Shortest Path algorithm: T1:7.1.1
Dijkstra’s Algorithm
CH19.2 = Definition of P and NP classes and
examples T1: 13.1
Post CH SS19 T1.7.1.2, 7.2.1, 7.3.1, 7.3.2
HW19
LE19
QZ10
Lab Reference
Contact Hour 20
Time Type Description Content Reference
Pre CH
During CH CH20 CH20.1 =Understanding NP-Completeness: CNF- T 13.2, T 13.3
SAT Cook-Levin theorem
CH20.2 =Polynomial time reducibility: CNF-SAT
and 3-SAT, Vertex Cover
Post CH SS20
HW20
LE20
QZ20
Lab Reference
Contact Hour 21
Time Type Description Content Reference
Pre CH
During CH CH21 CH21.1 =Clique and Set-Cover, T1:13.3
CH21.2 = Subset-Sum and Knapsack
Post CH SS21 Traveling Salesman Problem
HW21
LE21
QZ21
Lab Reference
Contact Hour 22
Time Type Description Content Reference
Pre CH
During CH CH22 CH22.1 = Course Review
Post CH SS22
HW22
LE22
QZ22
Lab Reference
Evaluation Scheme:
Legend: EC = Evaluation Component; AN = After Noon Session; FN = Fore Noon Session
No Name Type Duration Weight Day, Date, Session, Time
EC-1 Quiz-I/ Assignment-I Online - 5% February 1-15, 2021
Quiz-II 5% March 1-15, 2021
Quiz-III/ Assignment-II 5% April 1-15, 2021
EC-2 Mid-Semester Test Open Book 2 hours 35% Saturday, 06/03/2021 (FN)
10 AM - 12 Noon
EC-3 Comprehensive Exam Open Book 2 hours 50% Saturday, 01/05/2021 (FN)
10 AM - 12 Noon
Note - Evaluation components can be tailored depending on the proposed model.
Important Information:
Syllabus for Mid-Semester Test (Closed Book): Topics in CS 1-5.
Syllabus for Comprehensive Exam (Open Book): All topics given in plan of study
Evaluation Guidelines:
1. For Closed Book tests: No books or reference material of any kind will be permitted.
Laptops/Mobiles of any kind are not allowed. Exchange of any material is not allowed.
2. For Open Book exams: Use of prescribed and reference text books, in original (not
photocopies) is permitted. Class notes/slides as reference material in filed or bound form is
permitted. However, loose sheets of paper will not be allowed. Use of calculators is permitted
in all exams. Laptops/Mobiles of any kind are not allowed. Exchange of any material is not
allowed.
3. If a student is unable to appear for the Regular Test/Exam due to genuine exigencies, the
student should follow the procedure to apply for the Make-Up Test/Exam. The genuineness of
the reason for absence in the Regular Exam shall be assessed prior to giving permission to
appear for the Make-up Exam. Make-Up Test/Exam will be conducted only at selected exam
centres on the dates to be announced later.
It shall be the responsibility of the individual student to be regular in maintaining the self-study
schedule as given in the course handout, attend the lectures, and take all the prescribed evaluation
components such as Assignment/Quiz, Mid-Semester Test and Comprehensive Exam according to the
evaluation scheme provided in the handout.