Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 891 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 891 Bytes

Technologies

  • Node v14.16.0
  • npm 6.14.11

Introduction

These are basic data structure implement in Nodejs. They are fo practice and include Trees, HashTable, Heaps, Queues, Priority Queues, Stacks and arrays.

How it Works

In order for this code to work on your machine you need to clone the whole repository.

git clone https://github.com/PaulCardoos/dataStructures-Javascript.git

navigate to the path where you cloned to repository

npm i

from this point you can run any file as you would run any node program. Make sure the code is together as the code requires some classes that are implement in the code to run. For example the BST requires the Node class.

no extra dependencies are needed

Extras

This is a work in progress. I strive everyday to fully master data structure and algorithms