/DTL-CPP

Dobby's Template Library has the most common data structures and some algorithms implemented in C++.

Primary LanguageC++MIT LicenseMIT


Dobby's Template Library (DTL)

A basic C++ template library with generic implementations of data structures and algorithms.
Explore the docs »

Report Bug · Request Feature

Getting Started

Simple as:

  1. Clone the repo.
git clone https://github.com/aleiva17/CPP-DTL.git
  1. 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;
}

Usage

For more examples of how data structures can be used, please refer to the Documentation

Contributing

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!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

See the open issues for a full list of proposed features (and known issues).

License

Distributed under the MIT License. See LICENSE.txt for more information.

Contact

Andrés Leiva - aleiva@gmail.com