@codyholmes/data-structures
v1.0.2
Published
Library of JS/TS data structures
Downloads
120
Maintainers
Readme
Javascript Data Structures
A small library of data structures for javascript
Data Structures Available
Installation
Using npm:
$ npm i @codyholmes/data-structures
Note: add --save if you are using npm < 5.0.0
In Node.js:
const { LinkedList } = require('@codyholmes/data-structures');
let myLinkedList = new LinkedList();
myLinkedList.insertFirst(5);