TSDS - TypeScript Data Structures
A collection of TypeScript classes to create and use common data structures
Installing
npm install typescript-data-structures
General Usage
Import the desired data structure in your file
import { LinkedList } from 'typescript-data-structures'
Instantiate class
private linkedList: LinkedList = new LinkedList();
Use class methods
this.linkedList.addToHead('new head');
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Radu Miron - Initial work - RCMiron
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE.md file for details