A basic C++ template library with generic implementations of data structures and algorithms.
Explore the docs »
Report Bug
·
Request Feature
Simple as:
- Clone the repo.
git clone https://github.com/aleiva17/CPP-DTL.git
- Start using the data structures and algorithms you want. For example:
#include "vector.hpp"
#include <iostream>
int main() {
dby::vector<int> nums = { 1, 2, 3, 4, 5 };
for (int num : nums) {
std::cout << num << ' ';
}
return 0;
}
For more examples of how data structures can be used, please refer to the Documentation
If you have a suggestion that would make this template library better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
See the open issues for a full list of proposed features (and known issues).
Distributed under the MIT License. See LICENSE.txt
for more information.
Andrés Leiva - aleiva@gmail.com