vote up 6 vote down star
12

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?

flag

10 Answers

vote up 15 vote down check

How about wikipedia's list of algorithms ?

link|flag
Sometimes I'm scared that an answer standing right behind me is going to bite me, thx. – Peter Jan 20 '09 at 10:11
Great, thanx ;-) +1 – Gamecat Jan 20 '09 at 10:26
vote up 7 vote down

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

link|flag
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
vote up 5 vote down

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

link|flag
vote up 3 vote down

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

link|flag
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 at 7:43
vote up 2 vote down

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

wikipedia entry

link|flag
vote up 1 vote down

http://www.algosort.com/

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

Algorithms in a Nutshell

link|flag
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 at 7:45
vote up 0 vote down

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|flag
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 at 7:45
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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