Algorithms in JavaScript

October 14, 2012 ยท View on GitHub

Collection of computer science algorithms and data structures written in JavaScript.

Sorting

  • QuickSort - info | source
  • MergeSort - info | source
  • BubbleSort - info | source
  • InsertionSort - info | source
  • SelectionSort - info | source

Run the sort performence test suite.

Binary Search Tree

Binary Search Tree implementation based on lectures from coursera.org by: Robert Sedgewick, Princeton University. info | source

Contents

  1. 1Sorting
  2. 2Binary Search Tree