deep-fish-pixel / linkedlist

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LinkedList

NPM version Downloads apache license

About

A Singly and Doubly Linked List

Installation

npm install LinkedList

Usage

var LinkedList = require("LinkedList");
var SinglyLinkedList = LinkedList.Singly();
var DoublyLinkedList = LinkedList.Doubly();

Features

  • Provides Linked list data structure.

Documentation

Methods


Example

list.add(10);
list.add(20);
list.add(30);
// 10 20 30
list.delete(10);
// 20 30
list.isExist(20); // Returns true, false otherwise
list.indexOf(30); // Returns 1 [0 Based], -1 for not found
list.length(); // Returns 2

list.each(function(item){
    console.log(item);
});

About

License:Other


Languages

Language:JavaScript 98.8%Language:Makefile 1.2%