typescript-data-structures
v1.1.7
Published
A collection of TypeScript classes to create and use common data structures
Downloads
5
Readme
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');
Data Structures
API
Find a short reference to each structure's public methods in src/[structure]/README.md
Contributing
Contributing rules will follow
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
Radu Miron, Iacob Nasca, Cosmin Serboteiu
Aknowledgements
Eric Traub - Data Structures in Javascript
License
This project is licensed under the MIT License - see the LICENSE.md file for details