khushi_advanceddsa.js
v1.0.2
Published
An npm package that can help you to use all of the famous ds and algo in your coding implementations
Readme
this is the package where you can find data structures like queue , heap implemented along with algorithms like mergesort , quicksort , bubblesort i have made this for learning purpose of packages
const dsa = require ("khushi_advanceddsa.js);
const arr = [5,4,3,2,1]
dsa.Algorithms.QuickSort(arr);
console.log(arr);
