advancedsa.js
v1.0.9
Published
An npm package that can help many to use famous DSA directly
Readme
This is one stop solution where you can find all relevant data structure like linked list, stacks, queues,heap etc along with a lot of algorithms like BubbleSort,mergesort,quicksort etc.
const dsa=require('advancedsa.js');
const arr=[5,4,3,2,1];
dsa.Algorithm.QuickSort(arr);
console.log(arr);
