FEE timetable ALG students Upload system BRUTE Discussion board

Lectures

Lectures timetable

Lecture Day Topics Slides
1. 23.9. Order of growth of functions, asymptotic complexity alg01a
alg01b
2. 30.9. Trees, binary trees, recursion alg02
3. 7.10. More recursion and backtrack examples recursion examples , backtrack examples coin change, N queens, rectangle tiling
4. 14.10. Graph, graph representation, basic graph processing graphs
Graphviz support
graph representation , weighted graphs
5. 21.10. Queue, Stack, Breadth/Depth First Search alg05_py
DFS animation, BFS animation
6. 28.10. National holiday
7. 4.11. Array search, Binary search tree alg06_py
8. 11.11. AVL and B- trees alg07
9. 18.11. Sorting algorithms I alg08_py
10.
T2:C3-132
25.11. Sorting algorithms II alg09a_py , alg09b_py
11.
T2:C3-132
2.12. Dynamic programming I alg11a_py
alg11b_py
12. 9.12. Dynamic programming II alg12a_py
alg12b_py
13. 16.12. T2:C3-132 Complexity of recursive algorithms, Master theorem alg10
14. 13.1. Hashing I & II alg13 alg14a alg14b

Source code examples for particular lectures

02 - basic recursion , same examples, more insight

03 - binary tree, In-pre-Post order, recursion, alternative: binary tree in just 1D arrays ( slides ppt slides-python pptx )

04/05 - graph, DFS, BFS

06 - backtrack example - magic square

07, 08 - Sorts - Insert, Select, Bubble, Quick, Merge, Heap, Radix, Counting