Skip to main content

Fast median finding

Project description

BFPRT

Median of Medians Quickselect Algorithm


About

This package implements fast median finding with the median of medians selection algorithm, also known as BFPRT (named after the authors of Blum et al. (1973)). It can be used to find the kth smallest value in a list, also known as the "kth order statistic".

When k is halfway through a list, then quickselect finds the median of the list in O(n) time. While this asymptotically linear algorithm is provably optimal, the constant factor overhead is known to be large, making this approach less useful in practice. In theory, however, the median of medians trick can be a very powerful proof step.

This package is intended primarily as a learning tool rather than a practical implementation. For faster runtime on most reasonably sized problems, prefer standard implementations of the median.

Installation

pip install bfprt

Usage

from bfprt import select_fast

# Items can have any type that implements less-than comparison
items = [4, 2, 1, 9, 5, 8]

# We want to get the kth smallest element from the list
k = 3

# This is the index of the kth smallest element
selected_index = select_fast(items, k)

# If k is len(items) // 2, then this is the median
kth_order_statistic = items[selected_index]

Installing from source

Install using Poetry

poetry install

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bfprt-0.3.0.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

bfprt-0.3.0-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file bfprt-0.3.0.tar.gz.

File metadata

  • Download URL: bfprt-0.3.0.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.9.12 Darwin/22.6.0

File hashes

Hashes for bfprt-0.3.0.tar.gz
Algorithm Hash digest
SHA256 464088d623517b1c41c9a275081e87390c4f52fa228e7d250787cb4c8490c80c
MD5 c05b15e077f2131cead1e1b7563d66d1
BLAKE2b-256 4bcc06fbf36353ff7f3f51fbd1712eab99b022850a39964aab1c29406c2279fa

See more details on using hashes here.

File details

Details for the file bfprt-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: bfprt-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 4.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.9.12 Darwin/22.6.0

File hashes

Hashes for bfprt-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da765a47c398d0507f21b9fd05bb280cf15bc1b7cca2f78eaa94b65030849832
MD5 86247ca521954361673a5a9f8df56843
BLAKE2b-256 a85656b5bb7fd0504747ebca259848c20d691cbd488784e473cec88256888f0c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page