Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.15 KB

LinkedLib

LinkedLib is a easy to use header-only library for data structures based on Linked Lists.

Setup

  1. Clone the repo:
git clone https://github.com/javierramoss/LinkedLib.git
  1. Copy the contents under your project's directory:
  2. Compile the headers along your project's files accordingly.

Usage

Implemented to a proyect of your own by including the header for the DS to be used and compiling accordingly. It supports both primitive and abstract data types (such as structs and classes).

To use, select a LinkedLib DS and simply specify the type as well as a undefined variable of the same type to pass to its constructor:

LinkedList<type> myLinkedList(type());

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

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

License

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