structure-js / datastructure

Javascript data structure
MIT License
3 stars 0 forks source link

@structure-js/datastructure

Datastructure is a library of data structures available in JavaScript.

Demo

Visualization demo site

demo

Overview

Repo Structure

Installation and Settings

Build requirements

Installation

Current version 1.1.1

npm i @structure-js/datastructure

How to use

const List = require('@structure-js/datastructure').List;
const Stack = require('@structure-js/datastructure').Stack;
const Queue = require('@structure-js/datastructure').Queue;
const Deque = require('@structure-js/datastructure').Deque;
const MaxHeap = require('@structure-js/datastructure').MaxHeap;
const MinHeap = require('@structure-js/datastructure').MinHeap;
const PriorityQueue = require('@structure-js/datastructure').PriorityQueue;
const Graph = require('@structure-js/datastructure').Graph;
const UndirectedGraph = require('@structure-js/datastructure').UndirectedGraph
const Tree = require('@structure-js/datastructure').Tree;
const BinarySearchTree = require('@structure-js/datastructure').BinarySearchTree;
const BTree = require('@structure-js/datastructure').BTree;

let list = new List();
let stack = new Stack();
let queue = new Queue();
let deque = new Deque();
let maxHeap = new MaxHeap();
let minHeap = new MinHeap();
let pq = new PriorityQueue(compare);
let graph = new Graph();
let tree = new Tree();
let bst = new BinarySearchTree();
let btree = new BTree();

// Other uses
// const structurejs = require('@structure-js/datastructure');
// let [Data Structure] = new structurejs.[Data Structure]();

// See the wiki for more details.

Contributors

korsejong, HeechanYang

License

MIT License

Copyright (c) 2018 structure-js

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.