@omts/counting-sort
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

@omts/counting-sort 🚀

A simple and efficient implementation of the Counting Sort algorithm in TypeScript. This package provides a stable and linear-time sorting utility that can be used in both Node.js and browser environments.

Installation 📦

You can install the package via npm or pnpm:

npm install @omts/counting-sort

Usage ✨

This package exports a countingSort function that sorts an array of non-negative integers using the Counting Sort algorithm. Below is an example of how to use it:

import { countingSort } from '@omts/counting-sort';

// Example usage
const unsortedArray = [3, 6, 8, 10, 1, 2, 1];
const sortedArray = countingSort(unsortedArray);

console.log(sortedArray); // Output: [1, 1, 2, 3, 6, 8, 10]

Complexity 📊

  • Time Complexity:
    • Best, Average, and Worst Case: O(n + k), where n is the number of elements in the input array and k is the range of the input.
  • Space Complexity:
    • O(n + k) due to the auxiliary arrays used for counting and output.

Development 🛠️

  • dev: Cleans and builds the package in watch mode using Bun.

  • build: Runs a clean build by generating multiple module formats (CJS, ESM, UMD) and type declarations.

  • build:esm: Builds the TypeScript source to ES Module (ESM) format.

  • build:cjs: Builds the TypeScript source to CommonJS (CJS) format.

  • build:umd: Builds the TypeScript source to UMD format with a global name OmtsCountingSort.

  • build:types: Generates type declaration files using the TypeScript compiler.

  • test: Runs all test cases using Bun.

Contributing 🤝

Contributions are welcome! If you have any improvements or suggestions, please feel free to open an issue or submit a pull request.

License ⚖️

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

Readme

Keywords

none

Package Sidebar

Install

npm i @omts/counting-sort

Weekly Downloads

286

Version

0.0.4

License

MIT

Unpacked Size

15.6 kB

Total Files

11

Last publish

Collaborators

  • linc.3395