Socket
Socket
Sign inDemoInstall

radixsort

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    radixsort

Blazingly fast radix sort in JavaScript for typed arrays.


Version published
Weekly downloads
10
increased by400%
Maintainers
1
Install size
19.3 kB
Created
Weekly downloads
 

Readme

Source

radixsort.js

Radix sort has linear time complexity, O(kN), where k is the number of radices per value, and N is the number of values.

How is this possible? The theoretical lower bound of O(N log N) only applies to comparison-based sorting algorithms, whereas radix sort doesn't actually perform any comparisons on the input data.

Usage

var sort = radixsort(),
    data = new Float32Array([…]);

var sorted = sort(data);

// You can also preallocate the auxiliary array…
sorted = sort(data, new Float32Array(data.length));

Note that radix sort modifies the input array, even though it uses an auxiliary array too. In fact, the sorted result will be the input array when an even number of radixes are in use, which is currently always the case.

The sorter always returns a buffer representing the sorted result, so you can pass this to the appropriate typed array constructor, as in the example above.

Informal Benchmark

The most common usage scenario for this will probably be sorting 32-bit floats e.g. for geometry algorithms. My informal benchmark repeatedly sorts an array of 65,536 random 32-bit floats.

Of course, the comparison is not entirely fair as JavaScript's native sort will be sorting double-precision (64-bit) numbers, as this is all JavaScript supports. But 32 bits is sufficient for most geometry algorithms, so the comparison is reasonable.

  • Radixsort.js: ~411 sorts per second.
  • JavaScript native sort: ~25 sorts per second.

Radixsort.js is roughly 16x faster! The speed difference gets even larger as you increase the input size.

Keywords

FAQs

Last updated on 28 Jun 2012

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc