JSPM

js-singly-linked-list

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q41830F
  • License MIT

Singly Linked List Implemented in Javascript

Package Exports

  • js-singly-linked-list

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (js-singly-linked-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Singly-Linked-List

Javascript Implementation of Singly Linked List

Installation & Usage :


npm install js-singly-linked-list
 const SinglyLinkedList = require('js-singly-linked-list');
 let list = new SinglyLinkedList();

 list.push(1); //Pushes value to the list
 list.pop(); // Delete value from the end of the list
 list.shift(); // Delete value from the start of the list
 list.unshift(1); // Adds value at the start of the list
 list.get(1); // Retrives value at the given index
 list.reverse(); // Reverses the list
 list.insert(1, 20); // list.insert(index, value) -> Inserts value at the given index
 list.set(1, 12); // list.set(index, value) ->  Replaces or set's value at the given index
 list.length; // Gives you length of the list
 list.head; // Gives you head of the list
 list.tail; // Gives you tail of the list