Skip to content

supercharge/linked-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



Linked List

Linked List data structure for JavaScript


Installation · Docs · Usage



Latest Version Monthly downloads

Follow @marcuspoehls and @superchargejs for updates!


Introduction

The @supercharge/linked-list package provides a JavaScript implementation for the Linked List data structure.

Installation

npm i @supercharge/linked-list

Resources

Quick Usage Overview

Using @supercharge/linked-list is pretty straightforward. The package exports a LinkedList class providing all methods to interact with the instance.

const { LinkedList } = require('@supercharge/linked-list')

const linkedList = new LinkedList()

linkedList.isEmpty() // true

linkedList.push(1)

linkedList.isNotEmpty() // true

Contributing

Do you miss a function? We very much appreciate your contribution! Please send in a pull request 😊

  1. Create a fork
  2. Create your feature branch: git checkout -b my-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 🚀

License

MIT © Supercharge


superchargejs.com  ·  GitHub @supercharge  ·  Twitter @superchargejs

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors