0.0.7 • Published 6 years ago

sort-types v0.0.7

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

Types of sorts

Different types of sorts with their complexity and best/worst case scenarios.

Has the following types of sorts

* Bubble sort
* Selection sort
* Insertion sort
* Merge sort
* Quick sort

Install

npm install 'sort-types';

If you want to play around, you may use the functions like this

import { bubbleSort } from 'sort-types';

bubbleSort([3,1,8,4,2]);

Few upcoming sorts

* Radix sort
* Bucket sort
* Heap sort

FYI

If you are wondering, how does sort() works, it actually does quick-sort when converted to C++.

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago