8

Can anybody suggest a good book or website which explains all popular search/sort/tree/Graph algorithms using JavaScript?

I am looking for something like the book introduction to algorithms, but providing implementation examples and code snippets in JavaScript rather than in Pseudo code or C/Java etc.

The purpose is to learn the basic computer science algorithms in JavaScript because I like and understand JavaScript better.

Kate Orlova
  • 3,225
  • 5
  • 11
  • 35
  • 3
    Algorithms as basic as those are language agnostic. Learn those and JS independent of each other, then apply them simultaneously. I doubt anyone has written a book catering to a market as specific as `Javascript implementations of popular search/sort/tree/Graph algorithms` – Asad Saeeduddin Nov 18 '12 at 19:07
  • @Asad There is a book by O'Reilly called "Data Structures and Algorithms with JavaScript" coming in March 2014 – Evgeny Jan 02 '14 at 21:13
  • http://shop.oreilly.com/product/0636920029557.do – Evgeny Jan 02 '14 at 21:14

1 Answers1

13

This repository will help you https://github.com/mgechev/javascript-algorithms.

Minko Gechev
  • 25,304
  • 9
  • 61
  • 68