Algorithms I

English Lectures

Annotation

Teaching

Credits

Study literature

Software

Annotation

This course is one of the introductory programming courses. The course aims to introduce students to algorithmic problem solving techniques. The algorithms and data structures discussed will be demonstrated in C++. Students are encouraged to analyze algorithmic problems and to synthesize solutions from smaller units.

Lecturer

doc. Mgr. Jiří Dvorský, Ph.D.


Teaching

Subject syllabus:

  1. Introductory Lesson, Course Organization
  2. Introduction
    1. What Is an Algorithm
    2. Fundamentals of Algorithmic Problem Solving
    3. Important Problem Types
    4. Fundamental Data Structures
  3. Fundamentals of the Analysis of Algorithm Efficiency
    1. The Analysis Framework
    2. Asymptotic Notations and Basic Efficiency Classes
    3. Mathematical Analysis of Nonrecursive Algorithms
    4. Mathematical Analysis of Recursive Algorithms
  4. Brute Force and Exhaustive Search
    1. Selection Sort and Bubble Sort
    2. Sequential Search
    3. Brute-Force String Matching
    4. Closest-Pair Problem
    5. Convex-Hull Problem
    6. Exhaustive Search - Traveling Salesman Problem and Knapsack Problem
    7. Depth-First Search
    8. Breadth-First Search
  5. Decrease and Conquer
    1. Insertion Sort
    2. Topological Sorting
    3. Generating Permutations
    4. Generating Subsets
    5. Binary Search
    6. Computing a Median
    7. Interpolation Search
    8. Searching and Insertion in a Binary Search Tree
  6. Divide and Conquer
    1. Mergesort
    2. Quicksort
    3. Binary Tree Traversals and Related Properties
    4. Multiplication of Large Integers
    5. Strassen’s Matrix Multiplication
    6. The Closest-Pair and Convex-Hull Problems by Divide-and-Conquer

Lectures and Seminars

Lectures are held every Wednesday from 10:45 to 12:15 in room E238. The seminar takes place immediately after the lecture in classroom EB113.


Credits

To be added


Study literature

Compulsory literature

  1. LEVITIN, Anany. Introduction to the Design and Analysis of Algorithms. 3rd ed. Boston: Pearson, 2012. ISBN 978-0-13-231681-1.
  2. CORMEN, Thomas H. Introduction to algorithms. 2nd ed. Cambridge, Mass.: MIT Press, 2001. ISBN 02-620-3293-7.
  3. CORMEN, Thomas H., Charles Eric LEISERSON, Ronald L. RIVEST a Clifford STEIN, [2022]. Introduction to algorithms. Fourth edition. Cambridge, Massachusetts: The MIT Press. ISBN 978-026-2046-305.
  4. SEDGEWICK, Robert. Algorithms in C. 3rd ed. Reading, Mass: Addison-Wesley, 1998. ISBN 978-020-1350-883.

Recommended literature

  1. STROUSTRUP, Bjarne. The C++ programming language. Fourth edition. Upper Saddle River, NJ: Addison-Wesley, 2013. ISBN 978-0321563842.
  2. SCHILDT, Herbert. Teach yourself C++. 3rd ed. Berkeley: Osborne McGraw-Hill, 1998. ISBN 978-0078823923.

Slides

Slides for the course can be downloaded here.


Software

Development environment for C++

Other software

Other software that you will find useful when creating your programs: