Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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.