1.2.0 • Published 5 years ago

datastructure_javascript v1.2.0

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

Data_Structers_Js

Overview

Data_structure_js is a npm package filled with datastructers, to make for easy use of then.

Code was made as a personal project to practice my knowledge in datastructers.

Setup

  1. Instllation
    npm i data_structures_javascript or just $ git clone --recursive https://github.com/WigglyGull/Data_Structures_Javascript

  2. Import DataStructers.js

let ds = require("data_structures_javascript");

  1. Setup data structures variable

let Datastructures = new ds();

  1. Create the variable you want in this case its a linked list

let LinkedList = DataStructures.LinkedList();

Then it should work perfectly to see each indivual data structures functions its all commented out on top of the data structure

Finished setup code.

let ds = require("data_structures_javascript");

let Datastructures = new ds();

let LinkedList = DataStructures.LinkedList();