Loading repository data…
Loading repository data…
aleiva17 / repository
Dobby's Template Library has the most common data structures and some algorithms implemented in C++.
Simple as:
git clone https://github.com/aleiva17/CPP-DTL.git
#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!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)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