C++ data structures assignments from a university course. Each homework folder contains implementations of different data structures and algorithms.
Each .cpp file can be compiled with g++:
g++ -o output_file source_file.cpp
./output_file
Data-Structures-Homework/
├── hw1/ - hw1_1.cpp, hw1_2.cpp, hw1_3.cpp
├── hw2/ - hw2-1.cpp, hw2-2.cpp, hw2-3.cpp
├── hw3/ - hw03-1.cpp, hw03-2.cpp (Student/Course classes)
├── hw4/ - hw04-1.cpp, hw04-2.cpp (Binary converter)
├── hw5/ - (advanced data structures)
├── hw6/ - GpaCalculator.cpp (dynamic arrays)
├── hw7/ - List.cpp (linked list)
└── hw8/ - mysorts.cpp (bubble, insertion, selection sorts)
Jasdeep Singh Dhillon