Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leeeqo/modern-cpp-course
Homework for C++ course (2022)
https://github.com/leeeqo/modern-cpp-course
Last synced: 19 days ago
JSON representation
Homework for C++ course (2022)
- Host: GitHub
- URL: https://github.com/leeeqo/modern-cpp-course
- Owner: leeeqo
- Created: 2024-12-05T09:08:10.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-05T09:16:59.000Z (about 1 month ago)
- Last Synced: 2024-12-05T10:22:20.192Z (about 1 month ago)
- Language: C++
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Modern C++ Course
A homework repository on "Modern C++" course (MSU, Faculty of Physics, Department of Mathematical Modeling and Computer Science, 2022).
Task 1 is a Polynomial of the third degree implementation.
Task 2 is a List implementation with size, resize, reverse, insert, erase, unique, push, pop, clear and operator[] methods.
Task 3 is a Tuple implementation.
Task 4 is a Shared pointer implementation with move semantics.
Task 5 is a Forward iterator implementation using List class.
Task 6 is a QuickSort algorithm implementation.
Task 7 is a Priority Queue implementation.