advanced-dsa-tejas
v1.0.6
Published
An npm package that can help you to use all of the famous Data Structures and Algorithms in your coding implementations.
Downloads
3
Readme
This is a one stop package where you can find all the relevant data structures like Linked List, Stacks, Queues, Heaps etc along with a lot of algorithms like Bubblesort, Mergesort, Quicksort, Binary Search, etc...
const dsa = require('./index.js');
console.log(dsa);
const arr=[4,3,2,-10,23];
console.log(dsa.Algorithms.QuickSort(arr));