# nodedatastructs

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

Latest version **1.0.4** (published 2020-06-02) · ISC license · 0 weekly downloads

## Install

```sh
npm install nodedatastructs
pnpm add nodedatastructs
yarn add nodedatastructs
bun add nodedatastructs
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2020-06-02 |
| First published | 2020-06-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | sauravsehgal24 |

## Links

- npm: https://www.npmjs.com/package/nodedatastructs
- npm.io page: https://npm.io/package/nodedatastructs

## Dependencies (1)

- [nodemon](https://npm.io/package/nodemon.md) ^2.0.4

## Recent versions

- 1.0.4 (latest) — 2020-06-02
- 1.0.3 — 2020-06-02
- 1.0.2 — 2020-06-02
- 1.0.1 — 2020-06-02
- 1.0.0 — 2020-06-02

## README

# 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()

```

---
_Source: https://npm.io/package/nodedatastructs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
