Course Outlines
Course Outlines
University
Department of Computer Science and Engineering
(CSE)
Course Outline
Course Code: CSE214
Course Title: Algorithms
Program: B.Sc. in CSE
Faculty: Faculty of Science and Information Technology (FSIT)
Semester: Year:
Credit: 2.0 Contact Hour: 3hrs/week
Course Level: L2T2 Prerequisite: CSE122, CSE131, CSE134,
CSE214
Course Category: Core
Instructor Name: Dr. S M Aminul Haque
Designation: Associate Professor
Email: aminul.cse@daffodilvarsity.edu.bd
Office Address:
Class Hours: Section Class Day Class Hours Classroom
Google Classroom
Code:
1. Course Rationale
Algorithms deals with the efficient ways to solve different mathematical and real life
problems. It covers the common algorithms, algorithmic paradigms, and data structures
used to solve computational problems. This course emphasizes the relationship between
algorithms and programming and explores algorithms from the programmer’s perspective
for solving problems efficiently using various programming languages.
1.1.Course Objective
This course introduces students to the analysis and design of computer algorithms. Upon
completion of this course, students will be able to do the following:
Analyse the asymptotic performance of algorithms.
Demonstrate a familiarity with major algorithms and data structures.
Apply important algorithmic design paradigms and methods of analysis.
Synthesize efficient algorithms in common engineering design situations.
1.2.Course Outcomes (CO’s):
By the end of the course the student will be able to:
CO1 Analyse and calculate time complexity and space complexity of various
algorithms or any written code using mathematical formula. (Analyse and
Apply)
CO2 Generate and interpret the output of iterative and recursive codes. (Create
and Understand)
CO3 Identify which algorithm listed under which algorithmic paradigm.
Compare among various algorithms/implemented codes and choose the
efficient one. ((Remember) Evaluate)
CO4 Break down and describe the simulation of various algorithms for different
input values. (Analyse and Understand)
CO5 Choose and apply appropriate algorithms to solve problems based on real
life scenario. Design own algorithm for a given problem. (Evaluate and
Apply) (Create)
1.4 CO-PO Mapping [attainment level used for COs from 1(weak)-3(strong) correlation]
PO1 PO2 PO3 PO4 PO5 PO6 PO7 PO8 PO9 PO10 PO11 PO12
PO’s
CO’s
CO1 2 3
CO2 1 2
CO3 2 3
CO4 1 3
CO5 3 2 3 1
1.4. CO Assessment Scheme
Teaching
and
Textbook & Video Related
Week Lesson. Topic Learning
Reference CO’s
Activities
(TLAI)
Introduction, Motivation Text Book (Chapter 1)
Les. 1 TLA1
Course logistics
Reference book iii
(Chapter 3)
1 Function and Recursion TLA1, Text Book (Chapter 31)
Les. 2 Euclid’s Greatest Common Reference book ii CO2
TLA2
Divisor(GCD) Algorithm (Chapter 1)
www.geeksforgeeks.org
www.topcoder.com
Text Book (Chapter 3)
Les. 3 Asymptotic Notation TLA1,
Reference book ii CO1
Complexity Analysis TLA3 (Chapter 2)
2 Reference book iii
TLA1,
Les. 4 Complexity Analysis (Chapter 3) CO1
TLA4
(Class Test – 1, Assignment – 1)
Text Book (Chapter 2)
Searching: Linear Search and TLA1,
CO1,
Reference book iii
Les. 5 brute force techniques. CO3,
TLA2 (Chapter 11)
3 Sorting: Insertion Sort www.visualgo.net CO4
TLA1, Reference book iii
Sorting: Bubble Sort, CO1,
Les. 6 TLA2, (Chapter 10)
Selection Sort. www.visualgo.net CO4
TLA4
Text Book (Chapter 2)
Introduction to Divide and Reference book i CO1,
Conquer Approach TLA1, (Chapter 2)
Les. 7 CO3,
Searching: Binary Search TLA2 Reference book ii
Sorting: Merge Sort (Chapter 5) CO4
4
www.visualgo.net
TLA1, CO1,
Text Book (Chapter 3)
Les. 8 Sorting: Quick Sort TLA2, CO3,
www.visualgo.net
TLA4 CO4
Introduction to Greedy Text Book (Chapter 16 CO1,
and 35)
Approach. TLA1, CO3,
Les. 9 Reference book iii
Greedy Coin Change TLA3 (Chapter 17) CO4,
Greedy Bin Packing www.geeksforgeeks.org CO5
5 Text Book (Chapter 16) CO1,
TLA1, Reference book iii
Greedy Partial Knapsack CO3,
Les. 10 TLA2, (Chapter 17)
Greedy Huffman Coding www.geeksforgeeks.org CO4,
TLA4
www.codeforces.com CO5
(Class Test –2, Assignment-2)
Introduction to Dynamic Text Book (Chapter 15)
TLA1, Reference book iii CO3,
Programming Approach
Les. 11 TLA2, (Chapter 19) CO2,
Using DP to solve the www.codeforces.com
TLA4 CO5
6 Fibonacci Numbers Problem www.topcoder.com
Reference book iii CO1,
(Chapter 19)
Les. 12 DP: Coin Change TLA1,
www.geeksforgeeks.org
CO3,
DP: 0/1 Knapsack TLA3 www.codeforces.com CO4,
www.topcoder.com CO5
(MID–TERM EXAM)
Text Book (Chapter 15) CO1,
DP: Longest Common TLA1, Reference book iii
Les. 13 Subsequence and Edit (Chapter 19)
CO4,
TLA4
Distance www.codeforces.com CO5
7 Reference book iii
DP: Longest Increasing TLA1, (Chapter 19)
CO1,
Les. 14 Subsequence www.geeksforgeeks.org CO3,
TLA2
CO4
Text Book (Chapter 22)
Introduction to Graph TLA1,
Reference book i
Les. 15 Algorithms (Chapter 4) CO5
Graph Representation TLA4 www.geeksforgeeks.org
8 www.codeforces.com
Text Book (Chapter 22) CO1,
Breadth First Search TLA1,
Les. 16 www.geeksforgeeks.org CO4,
Depth First Search TLA3
CO5
DFS Applications:
Full Tree Traversal TLA1,
Text Book (Chapter 22)
Les. 17 Cycle Finding www.geeksforgeeks.org CO4
TLA4
Component Finding
9 Articulation Point Finding
DFS Application:
Topological Sort TLA1, Text Book (Chapter 22)
Les. 18 Strongly Connected CO4
TLA4 www.geeksforgeeks.org
Components
(Class Test-3, Assignment – 3)
Minimum Spanning Tree CO1,
(MST) TLA1, Text Book (Chapter 23) CO3,
Les. 19
MST: Kruskal’s Algorithm TLA2 www.geeksforgeeks.org CO4,
10
MST: Prim’s Algorithm CO5
Single Source Shortest TLA1, CO1,
Text Book (Chapter 24)
Les. 20 Path(SSSP): Dijkstra’s TLA2, CO4,
www.geeksforgeeks.org
Algorithm TLA4 CO5
SSSP: Bellman Ford TLA1, Text Book (Chapter 24) CO1,
11 Les. 21
Algorithm TLA2 www.geeksforgeeks.org CO4
TLA1, CO1,
All Pairs Shortest Path: Text Book (Chapter 25)
Les. 22 TLA2, CO4,
Floyd–Warshall algorithm www.geeksforgeeks.org
TLA4 CO5
Final Presentation by
Les. 23 Students/ Discussion about all TLA3 N/A
12 the assigned problems.
Les. 24 Student’s Problem Discussion TLA4 N/A
(FINAL EXAM)
4. Assessment Methods
4.1. Grading System
Numerical Grade Letter Grade Grade Point
80-100 A+ 4.00
75-79 A 3.75
70-74 A- 3.50
65-69 B+ 3.25
60-64 B 3.00
55-59 B- 2.75
50-54 C+ 2.50
45-49 C 2.25
40-44 D 2.00
Less than 40 F 0.00