|
|
|
||
|
The course Programming provides an introduction to computer programming starting from basic concepts (algorithms, computability, data structures, programming languages, implementations, computer hardware), developing on fundamental algorithms (searching, sorting, graph algorithms, …) and data structures (lists, arrays, trees, …), describing different algorithmic (divide and conquer, dynamic programming, branch and bound, …) and programming (procedural, functional, parallel, …) paradigms. The examples will be given in Julia programming language and practiced in small groups of students allowing an individual approach. Within the course students may access high-performance computer center in Troja.
Last update: Uhlík Filip, prof. RNDr., Ph.D. (21.12.2025)
|
|
||
|
• Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein: Introduction to Algorithms, MIT Press, 2022, ISBN 026204630X. • additional resources can be found at http://11c.cz/j Last update: Uhlík Filip, prof. RNDr., Ph.D. (21.12.2025)
|
|
||
|
The course is completed by an individual software project followed by an oral examination. During the oral part students will be questioned about their software projects, asked to make modifications and expected to discuss it in general. Last update: Uhlík Filip, prof. RNDr., Ph.D. (02.03.2026)
|
|
||
|
- What are algorithms, data structures and programs? Last update: Uhlík Filip, prof. RNDr., Ph.D. (06.02.2026)
|
|
||
|
Students will be able to explain positional number representations for both integers and real numbers, how to convert between bases, how numbers are represented in computers, what problems are connected with the fixed amount of memory per number. Students will understand variables, operators and expressions. Students will actively write computer programs in Julia using basic constructions if-else, while, for, functions including their recursive calls and how to remove them. Students will understand basic data structures, arrays, lists (stacks and queues in particular), trees, graphs. Students will be able to formulate basic algorithms, implement and test them as well as to prove their correctness and estimate their computational complexity. Basic algorithms will include sequential search, binary search, searching trees, hashing tables, simple sorting methods like select sort or insert sort as well as methods like heap sort, merge sort or quick sort. Students will be able to traverse trees and graphs and solve problems like evaluation of expressions, finding a path, finding the shortest path, number of graph components. Students will learn logo graphics and master recursion. Last update: Uhlík Filip, prof. RNDr., Ph.D. (06.02.2026)
|