1.0.5 • Published 2 years ago

sort-search-algos v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

sort-search-algos

Different types of sorting algorthims Only Quick sorting is available now

Installation

npm i sort-search-algos

Usage

Javascript React/Angular

import {quickSort} from 'sort-search-algos';
 let arr = [9,4,8,2,0,44,5];
let items = quickSort(arr, 0, arr.length-1)
Output should be [0, 2, 4, 5, 8, 9, 44]