dsaadvancedcustom.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 a one stop package where you can find all the relevant data Structures like LinkedList, Stack ,Queue, Heap etc along with a lot of algorithms like bubbleSort, HeapSort, QuickSort, MergeSOrt, Binary Search.
const dsa = require('dsaadvanced.js')
const arr = [5,4,3,2,1];
dsa.Algorithms.BubbleSort(arr);
console.log(arr);
