Design & Analysis of Algorithms (BTCS 403-18)

Pre-requisites

Data Structures

Course Outcomes

The student will be able to:

  1. For a given algorithms analyze worst-case running times of algorithms based on asymptotic analysis and justify the correctness of algorithms
  2. Explain when an algorithmic design situation calls for which design paradigm (greedy/ divide and conquer/backtrack etc.)
  3. Explain model for a given engineering problem, using tree or graph, and write the corresponding algorithm to solve the problems
  4. Demonstrate the ways to analyze approximation/randomized algorithms (expected running time, probability of error)
  5. Examine the necessity for NP class based problems and explain the use of heuristic techniques

Detailed Syllabus

Module 1: Introduction

Characteristics of algorithm. Analysis of algorithm: Asymptotic analysis of complexity bounds – best, average and worst-case behavior; Performance measurements of Algorithm, Time and space trade-offs, Analysis of recursive algorithms through recurrence relations: Substitution method, Recursion tree method and Masters' theorem.

Module 2: Fundamental Algorithmic Strategies

Brute-Force, Greedy, Dynamic Programming, Branch-and-Bound and Backtracking methodologies for the design of algorithms; Illustrations of these techniques for Problem-Solving: Bin Packing, Knap Sack, TSP.

Module 3: Graph and Tree Algorithms

Traversal algorithms: Depth First Search (DFS) and Breadth First Search (BFS); Shortest path algorithms, Transitive closure, Minimum Spanning Tree, Topological sorting, Network Flow Algorithm.

Module 4: Tractable and Intractable Problems

Computability of Algorithms, Computability classes – P, NP, NP-complete and NP-hard. Cook's theorem, Standard NP-complete problems and Reduction techniques.

Module 5: Advanced Topics

Approximation algorithms, Randomized algorithms, Heuristics and their characteristics.

Text Books

  1. Introduction to Algorithms, 4TH Edition, Thomas H Cormen, Charles E Lieserson, Ronald L Rivest and Clifford Stein, MIT Press/McGraw-Hill.
  2. Data Structures and Algorithms in C++, Weiss, 4th edition, Pearson.
  3. Fundamentals of Computer Algorithms – E. Horowitz, Sartaj Saini, Galgota Publications.

Reference Books

  1. Algorithm Design, 1st Edition, Jon Kleinberg and Eva Tardos, Pearson.
  2. Algorithm Design: Foundations, Analysis, and Internet Examples, Second Edition, Michael T Goodrich and Roberto Tamassia, Wiley.
  3. Algorithms -- A Creative Approach, 3RD Edition, Udi Manber, Addison-Wesley, Reading, MA.

Design & Analysis of Algorithms Lab (BTCS 405-18)

List of Experiments

  1. Code and analyze solutions to following problem with given strategies:
    • Knap Sack using greedy approach
    • Knap Sack using dynamic approach
  2. Code and analyze to find an optimal solution to matrix chain multiplication using dynamic programming.
  3. Code and analyze to find an optimal solution to TSP using dynamic programming.
  4. Implementing an application of DFS such as:
    • to find the topological sort of a directed acyclic graph
    • to find a path from source to goal in a maze
  5. Implement an application of BFS such as:
    • to find connected components of an undirected graph
    • to check whether a given graph is bipartite
  6. Code and analyze to find shortest paths in a graph with positive edge weights using Dijkstra's algorithm.
  7. Code and analyze to find shortest paths in a graph with arbitrary edge weights using Bellman-Ford algorithm.
  8. Code and analyze to find shortest paths in a graph with arbitrary edge weights using Flyods' algorithm.
  9. Code and analyze to find the minimum spanning tree in a weighted, undirected graph using Prims' algorithm
  10. Code and analyze to find the minimum spanning tree in a weighted, undirected graph using Kruskals' algorithm.
  11. Coding any real world problem or TSP algorithm using any heuristic technique.

Lab Outcomes

The student will be able to:

  1. Improve practical skills in designing and implementing complex problems with different techniques
  2. Understand comparative performance of strategies and hence choose appropriate, to apply to specific problem definition
  3. Implement Various tree and graph based algorithms and become familiar with their design methods
  4. Design and Implement heuristics for real world problems