1.0.4 • Published 4 years ago

nodedatastructs v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Data structures for nodeJS

About

This package provides various data structures like linked list, trees, graphs and many more in a easy to implement fashion for nodeJS.

LinkedList

const {LinkedList} = require('nodedatastructs');

const list = new LinkedList() 

// or initialize with root node
const list = new LinkedList(12) 

// or initialize with nodes
const list = new LinkedList([12,31,432]) 

list.addNode(34)
list.addNodes([334,42,45])

list.printNodes()
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago