I'm looking for an overview of algorithms, you need every now and then. If there is a problem, you either do reinvent the wheel or spend a lot of time searching for an algorithm to a common known problem which has been solved a hundred times before.

Best one would be a website with sorted algorithms, like:

  • Compression
    • ...
  • Decryption
    • ...
  • Encryption
    • Symetric
      • ...
    • ASymetric
      • ...
  • Search
    • ...
  • Sort
    • Bubble Sort
    • Quicksort
    • ...

I think you get a feeling what I mean.

What pages do you know?

link|improve this question

feedback

11 Answers

up vote 19 down vote accepted

How about wikipedia's list of algorithms ?

link|improve this answer
2  
Sometimes I'm scared that an answer standing right behind me is going to bite me, thx. – Xn0vv3r Jan 20 '09 at 10:11
Great, thanx ;-) +1 – Gamecat Jan 20 '09 at 10:26
feedback

How about Dictionary of Algorithms and Data Structures from the NIST?

link|improve this answer
This seems more useful for finding out what a referenced algorithm is, than (for example) trying to find out what encryption algorithms there may be. – Stephen Denne Jan 20 '09 at 10:17
It has an index by area too nist.gov/dads/termsArea.html#crypt – Pete Kirkham Jan 21 '09 at 9:31
feedback

You also have a good Wikibook on Algorithms, referred by many algorithms articles.

link|improve this answer
feedback

There is a series of books, "The Art Of Computer Programming" which is quite comprehensive, if you want something in paper.

wikipedia entry

link|improve this answer
1  
+1 High-level descriptions, low-level implementations, and the math pages make excellent pillows! – luser droog Sep 22 '11 at 0:07
feedback

I would strongly recommend the book "Algorithm Design Manual" by Steven Skiena. It has the catalog structure you are mentioning.

link|improve this answer
As well as The Algorithm Design Manual, there's the online Stony Brook Algorithm Repository managed by the author, with the same catalogue structure as the book cs.sunysb.edu/~algorith – MarkJ Mar 13 '09 at 7:43
feedback

This book is excellent:

The Algorithm Design Manual

This has been linked in other answers but is a good resource:

Skiena's Algorithms Lectures

link|improve this answer
As well as The Algorithm Design Manual, there's the online Stony Brook Algorithm Repository managed by the author, with the same catalogue structure as the book cs.sunysb.edu/~algorith – MarkJ Mar 13 '09 at 7:45
feedback

http://www.algosort.com/

link|improve this answer
feedback

CLRS.

That is to say, the "Introduction to Algorithms" textbook by Cormen, Leiserson, Rivest and Stein.

It will give you a good overview of the most significant algorithms for most common purposes, along with a solid analysis.

A simple website/list would be a disservice if it inspired too-hasty "cut and paste" selection without a solid understanding.

link|improve this answer
feedback

As well as The Algorithm Design Manual, there's the online Stony Brook Algorithm Repository managed by the author, which links to implementations. Both have an excellent catalogue structure.

link|improve this answer
feedback

Princeton has some great public lectures by R. Sedgewick, (the guy who made left leaning red black trees and the book Algorithms in C)

http://www.cs.princeton.edu/courses/archive/spring11/cos226/lectures.php

link|improve this answer
feedback

In addition to seconding The Algorithm Design Manual, I've had a very positive experience with this book:

Algorithms in a Nutshell

link|improve this answer
As well as The Algorithm Design Manual, there's the online Stony Brook Algorithm Repository managed by the author, with the same catalogue structure as the book cs.sunysb.edu/~algorith – MarkJ Mar 13 '09 at 7:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.