1.1.0 • Published 5 years ago

data_structers_javascript v1.1.0

Weekly downloads
5
License
ISC
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_structers_javascript or just $ git clone --recursive https://github.com/WigglyGull/Data_Structures_Javascript

  2. Import DataStructers.js let ds = require("./"Directions to file"/DataStructers.js");

  3. Setup data structer variable let DataStructes = new DataStructes();

  4. Create the variable you want in this case its a linked list let LinkedList = ds.LinkedList();

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

Finished setup code.

let ds = require("./"Directions to file"/DataStructers.js");

let ds = new DataStructes();

let LinkedList = ds.LinkedList();