complete_dsa_in_js.js
v1.0.3
Published
A package having all the implemetation of all Data Structures.
Readme
This package contains the Algorithms and Data structure along with their implementation.It could be used by anyone who is preparing DSA. The Algorithms included are
- Binary search
- Mergesort
- Quicksort
- Bubblesort
The Data structures included are
- Heap
- Queue
const Dsa = require('Dsa_Npm_package');
const arr = [5,4,3,2,1];
Dsa.Algorithns.bubblesort(arr);
console.log(arr);