Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wenszel/agh-introduction-to-computer-science
Algorithms from the "Introduction to Computer Science" course
https://github.com/wenszel/agh-introduction-to-computer-science
linked-list recursion trees
Last synced: 9 days ago
JSON representation
Algorithms from the "Introduction to Computer Science" course
- Host: GitHub
- URL: https://github.com/wenszel/agh-introduction-to-computer-science
- Owner: Wenszel
- Created: 2022-10-22T12:09:06.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-12T20:11:52.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T04:21:20.531Z (2 months ago)
- Topics: linked-list, recursion, trees
- Language: Python
- Homepage:
- Size: 345 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# "Introduction to Computer Science" course at AGH UST
The repository contains algorithms from the "Introduction to Computer Science" course from the first semester at AGH.
Topics of the exercises include tasks on arrays, recursion, and basic data structures.## Table of content:
- [set_01: "Simple programmes with loops part I"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_01)
- [set_02: "Simple programmes with loops part II"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_02)
- [set_03: "One-dimensional arrays"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_03)
- [set_04: "Two-dimensional arrays"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_04)
- [set_06: "Recursion"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_06)
- [set_07: "Linked list"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_07)
- [set_08: "Trees"](https://github.com/Wenszel/agh-introduction-to-computer-science/tree/master/set_08)## The most interesting tasks:
- [Knight's tour](https://github.com/Wenszel/python-algorithms/blob/master/set_06/t_04.py)
- [Determinant of the matrix](https://github.com/Wenszel/python-algorithms/blob/master/set_06/t_10.py)
- [Tower of Hanoi](https://github.com/Wenszel/python-algorithms/blob/master/set_06/t_14.py)
- [Eight queens puzzle](https://github.com/Wenszel/python-algorithms/blob/master/set_06/t_15.py)
- [Implemented set with linked list](https://github.com/Wenszel/python-algorithms/blob/master/set_07/t_01.py)
- [Search in BST](https://github.com/Wenszel/python-algorithms/blob/master/set_08/t_04.py)
- [Checking if a tree is an AVL tree](https://github.com/Wenszel/python-algorithms/blob/master/set_08/t_01.py)