1.2.0 • Published 1 year ago

@angelamcosta/sort v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@angelamcosta/sort

npm version

Description

@angelamcosta/sort is a JavaScript library that provides several sorting algorithms.

Installation

npm install @angelamcosta/sort

Usage

const { bubbleSort } = require('@angelamcosta/sort');

const arr = [3, 6, 2, 1, 9];
const sortedArr = bubbleSort(arr);
console.log(sortedArr); // Output: [1, 2, 3, 6, 9]

Algorithms

The following sorting algorithms are available in this library:

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Merge Sort (soon)
  • Quick Sort (soon)

License

This project is licensed under the MIT License - see the LICENSE file for details.

Credits

Support

If you have any questions or issues, please contact the author.

Issues

If you find any bugs or have any suggestions, please file an issue here.

1.2.0

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago