Skip to content

An online JavaScript sorting application, made to calculate the time taken for an ascending sort over a randomly generated dataset with an user specified range.

Notifications You must be signed in to change notification settings

kxnyshk/sort-hat.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sort-hat.js

An online JavaScript sorting application, made to calculate the time taken for an ascending sort over a randomly generated dataset with an user specified range.

Sorting used

  • Chrome: JavaScript V8 Chromium engine uses TimSort as of Sept' 2018 for sorting contiguous numeric arrays with Arrays.sort()
  • Mozilla: Mozilla Firefox uses MergeSort with JavaScript's Arrays.sort()

Time calculation

Hosting

Further readings