npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@omts/bubble-sort

v0.0.5

Published

A simple and customizable **Bubble Sort** algorithm implementation in TypeScript. This package supports sorting arrays of various types, works in both Node.js and browser environments, and allows for custom comparator functions to control sorting behavior

Downloads

21

Readme

@omts/bubble-sort 🚀

A simple and customizable Bubble Sort algorithm implementation in TypeScript. This package supports sorting arrays of various types, works in both Node.js and browser environments, and allows for custom comparator functions to control sorting behavior.

Installation 📦

You can install the package via npm or pnpm:

npm install @omts/bubble-sort

or

pnpm add @omts/bubble-sort

Usage ✨

The package exports a bubbleSort function that allows you to sort arrays of any type. You can optionally provide a custom comparator function to define the sort order (ascending, descending, or other complex sorting logic).

Basic Example (Numbers)

import { bubbleSort } from '@omts/bubble-sort';

// Example usage: sorting an array of numbers in ascending order
const unsortedArray = [5, 2, 9, 1, 5, 6];
const sortedArray = bubbleSort(unsortedArray);

console.log(sortedArray); // Output: [1, 2, 5, 5, 6, 9]

Custom Comparator Example

You can sort arrays of objects or control the sort order by providing a custom comparator function:

Comparator Function

A comparator function is used to define the sort order. It should take two arguments (usually referred to as a and b) and return:

  • A positive number if a should come after b
  • A negative number if a should come before b
  • 0 if a and b are equal

By default, if no comparator is provided, the function will sort numbers in ascending order.

interface Person {
    name: string;
    age: number;
}

const people: Person[] = [
    { name: 'Alice', age: 25 },
    { name: 'Bob', age: 20 },
    { name: 'Charlie', age: 30 }
];

// Sorting by age in ascending order
const sortedByAgeAsc = bubbleSort(people, (a, b) => a.age - b.age);
console.log(sortedByAgeAsc);
/*
Output:
[
  { name: 'Bob', age: 20 },
  { name: 'Alice', age: 25 },
  { name: 'Charlie', age: 30 }
]
*/

// Sorting by age in descending order
const sortedByAgeDesc = bubbleSort(people, (a, b) => b.age - a.age);
console.log(sortedByAgeDesc);
/*
Output:
[
  { name: 'Charlie', age: 30 },
  { name: 'Alice', age: 25 },
  { name: 'Bob', age: 20 }
]
*/

Complexity 📊

  • Time Complexity:
    • Average Case: O(n^2)
    • Worst Case: O(n^2) - This occurs when the array is sorted in reverse order.
    • Best Case: O(n) - This occurs when the array is already sorted.
  • Space Complexity: O(1), since the sorting is done in place without using additional memory.

Development 🛠️

Available Scripts:

  • dev: Cleans and builds the package in watch mode using Bun.
  • build: Generates 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 OmtsBubbleSort.
  • build:types: Generates type declaration files using the TypeScript compiler.
  • test: Runs all test cases using Bun.

Contributing 🤝

Contributions are welcome! If you have improvements or suggestions, 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.


Happy sorting with @omts/bubble-sort! 🎉