Lapple / Sorts-of-Coffee

Various sorting algorithms written in CoffeeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sorts of Coffee

Sorts of Coffee is a collection of sorting algorithms, written in CoffeeScript and compiled to JavaScript. The list currently includes:

Benchmarking

While benchmarking I have received the following speed results:

  • Native [].sort took 4.25ms
  • Quicksort took 2.33ms
  • Mergesort took 45.64ms
  • Bubblesort took 1644.50ms
  • Insertion sort took 129.75ms
  • Shell sort took 2.70ms

About

Various sorting algorithms written in CoffeeScript