1.0.3 • Published 4 years ago

@truecodemedia/linkedlist v1.0.3

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

What is this?

Basic linked list implemention using vanila Javascript

Instalation

npm i @truecodemedia/linkedlist

Then ...

import { LinkedList } from '@truecodemedia/linkedlist';

let list = new LinkedList();

Available methods

  • prepend
  • append
  • deleteFirst
  • deleteLast
  • addAtIndex
  • deleteAtIndex
  • deleteAtValue
  • contains
  • isEmpty
  • size
  • print