Giter VIP home page Giter VIP logo

node-array-timsort's Introduction

Build Status Coverage

array-timsort

A fork of timsort with the following differences:

  • array-timsort returns an array which records how the index of items have been sorted, while timsort returns undefined. See the example below.
  • improves test coverage
  • removes some dead code branches that could never be reached
  • no longer built with UMD
const {sort} = require('array-timsort')

const array = [3, 2, 1, 5]

sort(array)  // returns [2, 1, 0, 4]

console.log(array)  // [1, 2, 3, 5]

An adaptive and stable sort algorithm based on merging that requires fewer than nlog(n) comparisons when run on partially sorted arrays. The algorithm uses O(n) memory and still runs in O(nlogn) (worst case) on random arrays. This implementation is based on the original TimSort developed by Tim Peters for Python's lists (code here). TimSort has been also adopted in Java starting from version 7.

Acknowledgments

  • @novacrazy: ported the module to ES6/ES7 and made it available via bower
  • @kasperisager: implemented faster lexicographic comparison of small integers

Usage

Install the package with npm:

npm i array-timsort

And use it:

const {sort} = require('array-timsort')

const arr = [...]

sort(arr)

As array.sort() by default the array-timsort module sorts according to lexicographical order.

You can also provide your own compare function (to sort any object) as:

function numberCompare (a, b) {
    return a - b
}

const arr = [...]

sort(arr, numberCompare)

You can also sort only a specific subrange of the array:

sort(arr, 5, 10)
sort(arr, numberCompare, 5, 10)

Performance

A benchmark is provided in benchmark/index.js. It compares the array-timsort module against the default array.sort method in the numerical sorting of different types of integer array (as described here):

  • Random array
  • Descending array
  • Ascending array
  • Ascending array with 3 random exchanges
  • Ascending array with 10 random numbers in the end
  • Array of equal elements
  • Random Array with many duplicates
  • Random Array with some duplicates

For any of the array types the sorting is repeated several times and for different array sizes, average execution time is then printed. I run the benchmark on Node v6.3.1 (both pre-compiled and compiled from source, results are very similar), obtaining the following values:

Execution Time (ns) Speedup
Array Type Length TimSort.sort array.sort
Random1040415833.91
100714744420.62
100096395599790.62
10000134104460980654.55
Descending10180188110.41
1006821921028.14
1000380918518548.61
10000358785392428150.30
Ascending101738164.69
1005781814731.34
10002551331993130.12
10000220985382446243.57
Ascending + 3 Rand Exc102329273.99
10010591579214.90
1000352530070885.29
10000274554781370174.15
Ascending + 10 Rand End1037814253.77
10017072334613.67
1000581833474457.53
10000380344985473131.08
Equal Elements101647664.68
10052031886.12
100023402797111.95
100001701128167216.56
Many Repetitions1039614823.74
1007282252673.47
10001055284201203.98
10000139612057873994.15
Some Repetitions1039014633.75
1006678200823.01
10001043443741033.59
10000133381654740004.10

TimSort.sort is faster than array.sort on almost of the tested array types. In general, the more ordered the array is the better TimSort.sort performs with respect to array.sort (up to 243 times faster on already sorted arrays). And also, in general, the bigger the array the more we benefit from using the array-timsort module.

These data strongly depend on Node.js version and the machine on which the benchmark is run. I strongly encourage you to run the benchmark on your own setup with:

npm run benchmark

Please also notice that:

  • This benchmark is far from exhaustive. Several cases are not considered and the results must be taken as partial
  • inlining is surely playing an active role in array-timsort module's good performance
  • A more accurate comparison of the algorithms would require implementing array.sort in pure javascript and counting element comparisons

Stability

TimSort is stable which means that equal items maintain their relative order after sorting. Stability is a desirable property for a sorting algorithm. Consider the following array of items with an height and a weight.

[
  { height: 100, weight: 80 },
  { height: 90, weight: 90 },
  { height: 70, weight: 95 },
  { height: 100, weight: 100 },
  { height: 80, weight: 110 },
  { height: 110, weight: 115 },
  { height: 100, weight: 120 },
  { height: 70, weight: 125 },
  { height: 70, weight: 130 },
  { height: 100, weight: 135 },
  { height: 75, weight: 140 },
  { height: 70, weight: 140 }
]

Items are already sorted by weight. Sorting the array according to the item's height with the array-timsort module results in the following array:

[
  { height: 70, weight: 95 },
  { height: 70, weight: 125 },
  { height: 70, weight: 130 },
  { height: 70, weight: 140 },
  { height: 75, weight: 140 },
  { height: 80, weight: 110 },
  { height: 90, weight: 90 },
  { height: 100, weight: 80 },
  { height: 100, weight: 100 },
  { height: 100, weight: 120 },
  { height: 100, weight: 135 },
  { height: 110, weight: 115 }
]

Items with the same height are still sorted by weight which means they preserved their relative order.

array.sort, instead, is not guarranteed to be stable. In Node v0.12.7 sorting the previous array by height with array.sort results in:

[
  { height: 70, weight: 140 },
  { height: 70, weight: 95 },
  { height: 70, weight: 125 },
  { height: 70, weight: 130 },
  { height: 75, weight: 140 },
  { height: 80, weight: 110 },
  { height: 90, weight: 90 },
  { height: 100, weight: 100 },
  { height: 100, weight: 80 },
  { height: 100, weight: 135 },
  { height: 100, weight: 120 },
  { height: 110, weight: 115 }
]

As you can see the sorting did not preserve weight ordering for items with the same height.

node-array-timsort's People

Contributors

kaelzhang avatar mziccard avatar novacrazy avatar kasperisager avatar dependabot[bot] avatar

Stargazers

Colin Wang avatar  avatar Brian Faust avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.