1.0.2 • Published 3 years ago

@codyholmes/data-structures v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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);