This repository contains most popular algorithms and data structures implemented by javascript
Each algorithms and data structures has it's own seperate readme related with the explanation, welcome fork and star
Note: this project is used for learning and researching only, not for production
npm install
npm run start
After starting the server, you can select which data structure you want test, then write code in ./src/index.js file
. For example, testing stack, just comment out //import "./stack"
// import "./singlyLinkedList"
// import "./doublyLinkedList"
// import "./tree"
// import "./graph"
// import "./queue"
// import "./stack"
// import "./set"
// import "./priorityQueue"