Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

quick-median

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quick-median

Lightning-fast median finding with O(n) average time complexity using Floyd-Rivest algorithm

  • 1.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Quick-Median: 🚀 Lightning-Fast Median Finding with O(n) Average Time Complexity

🚀 Blazingly fast median computation using the Floyd-Rivest algorithm 📊 Outperforms traditional quickselect in practice ⚡ Average time complexity of O(n) 🔧 TypeScript support included

Installation

Install quick-median with npm:

npm install quick-median

CommonJS

const { findMedian } = require('quick-median');

const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const median = findMedian(arr);
console.log(median); // 5.5

ES Module (TypeScript Supported)

import findMedian from 'quick-median';

const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const median = findMedian(arr);
console.log(median); // 5.5

Why this project?

Many existing median-finding packages on npm are not optimized for performance. This project implements the Floyd-Rivest algorithm, a highly efficient selection algorithm that outperforms traditional quickselect in practice.

Algorithm

Quick-Median uses the Floyd-Rivest algorithm, an optimized selection algorithm with the following characteristics:

  • Expected running time: $O(n)$
  • Expected number of comparisons: $n + \min(k, n - k) + O(n^{1/2} \log^{1/2} n)$

The algorithm works by:

  1. Selecting a small random sample from the input array
  2. Recursively selecting two pivot elements
  3. Partitioning the array into three sets based on these pivots
  4. Recursively applying the algorithm to the appropriate partition

This approach significantly reduces the number of comparisons needed, especially for large datasets.

Comparison with Other Algorithms

AlgorithmAverage CaseWorst CaseSpace Complexity
Floyd-Rivest$O(n)$$O(n^2)$$O(1)$
Quickselect$O(n)$$O(n^2)$$O(1)$
Median of Medians$O(n)$$O(n)$$O(1)$
Sorting-based$O(n \log n)$$O(n \log n)$$O(1)$ to $O(n)$

While Floyd-Rivest and Quickselect have the same big-O complexity, Floyd-Rivest performs fewer comparisons on average, leading to better real-world performance.

The worst-case scenario for Floyd-Rivest (and Quickselect) occurs when the pivot choices consistently result in unbalanced partitions. However, this is extremely rare in practice due to the algorithm's use of random sampling.

Benchmarks

Summary

This implementation consistently outperforms other popular median-finding packages on npm:

Algorithm10100100010000100000100000010000000
median0.000.000.020.270.999.5297.26
faster-median0.000.010.050.242.7668.41693.28
compute-median0.000.010.030.191.8517.04205.33
quick-median0.000.000.010.040.281.7017.04
ml-array-median0.000.000.010.080.672.2425.22
median-quickselect0.000.000.010.030.261.5917.91

(Times in milliseconds)

As shown, Quick-Median is consistently faster, especially for larger datasets. For an input size of 10,000,000 elements, Quick-Median is:

  • 5.7x faster than the 'median' package
  • 40.7x faster than 'faster-median'
  • 12x faster than 'compute-median'
  • 1.48x faster than 'ml-array-median'

Detailed Report

See full benchmark at: https://vinroger.github.io/quick-median/

image

image

image

image

image

image

image

TypeScript Support

This package is written in TypeScript and includes type definitions, ensuring type safety in TypeScript projects.

Acknowledgements

This implementation is based on the Floyd-Rivest algorithm, originally described in:

Floyd, Robert W.; Rivest, Ronald L. (March 1975). "Expected time bounds for selection". Communications of the ACM. 18 (3): 165–172.

For more information about the algorithm, see the Wikipedia article on the Floyd-Rivest algorithm.

License

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


This project is created by Vincentius Roger Kuswara Contact me at: vincentiusrogerk@gmail.com

Keywords

FAQs

Package last updated on 28 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc