Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had a painful experience with the "Analysis of Algorithms" classes back in college but have recently found a need for it in the real world. -- Anyway, I'm looking for a simple-yet-effective crash course. Any ideas?

Related Sidenote: It sure would be nice if there were a "Cartoon Guide to Algorithm Analysis", taught by Dilbert.

UPDATE: A very similar question can be found at: How to get started on ALGORITHMS?

share|improve this question
Sidenote: I fear Dogbert might get involved... – Mitch Wheat Mar 3 '09 at 2:57

12 Answers

up vote 15 down vote accepted
+100

There are a lot of good books on the subject. I like An Introduction to the Analysis of Algorithms. Also check out the algorithms course on MIT OpenCourseWare (using CLRS as the course text). It's a little bit deep, but having it online allows you to go at your own pace.

A couple of other books that I've started reading recently are Algorithms in a Nutshell and the Algorithm Design Manual. They both take a lighter approach than most algorithms books. Instead of heavy math and formal proofs these books give you realistic problem statements and show you the steps taken to refine an algorithm. They also show you how to estimate and measure the complexity of a solution. I would highly recommend either book.

share|improve this answer
+1. for the MIT OCW and Skiena recommendations – Mitch Wheat Mar 3 '09 at 2:56
...oh and the sedgewick book (that was the one I started with) – Mitch Wheat Mar 3 '09 at 3:02

Likewise, UC Berkeley has myriad podcasts that you may find helpful.

http://webcast.berkeley.edu/course_feeds.php

share|improve this answer
In particular, look here cs.berkeley.edu/~vazirani/algorithms.html for a draft of the textbook used at Berkeley. There are no podcasts or webcasts that I know of for a class on Algorithms at Berkeley. – Kaushik Mar 2 '09 at 6:09

Google Code University offers a page on Algorithms that points to some slides offered by Stanford and Princeton.

share|improve this answer

Erik Öjebo posted a great answer to a nearly identical question, asked shortly after yours.

Quoting his answer:

MIT has a course on algorithms in their Open Courseware Program with video, audio and PDF lectures.

There is also an online course, also with video lectures, at ArsDigita University.

At University of Florida there is the course Data Structures and Algorithms in Java, and just as the above it has video lectures available online.

At freescienceonline.blogspot.com you can find a whole lot of video lectures on algorithms, as well as a lot of other interesting videos.

share|improve this answer

I like Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein. It's a bit heavy, but I found it to be a decent reference text.

share|improve this answer
Wow. At 1056 pages, I'm sure it is heavy. – Paul Croarkin Nov 3 '08 at 19:45
you can curl that! (no... not the analog to wget...) – warren Nov 3 '08 at 19:46
@Paul: it's not a book you'll want to read from cover to cover. However, it is one of the #1 books on this topic. – Jasper Bekkers Nov 3 '08 at 19:53

You don't say a lot about the remainder of you background. For straight out analysis of algorithms, the methods by which you evaluate an algorithm to find its order statistics and behavior, If you're comfortable with mathematics in general -- say you've had two years of calculus, or a good abstract algebra course -- then you can't really do much better than to read Knuth Volume One.

The usual "Analysis of Algorithms" course is also a data structures course, so a data structures text might be better if you also need to learn about lists, trees, etc. My favorite in graduate school was Aho, Hopcroft and Ullman.

I like Cormen as a reference; it also serves as an admirable doorstop, for the execution of large icky bugs, for clamping small glue joints (the slick cover releases most wood glues), and as an end book because it holds a bookend in place. Wouldn't recommend it as an intro text.

share|improve this answer

There is a simple shortcut to understanding the performance of searching and sorting algorithms, if that is what you're looking for.

First, sorting is basically repeated search. For each of N items, you are searching for where to insert it in the list, and then inserting it, so it takes N times the big-O of the search procedure.

To understand big-O of search, a simple way is to think of it as a series of decisions (usually binary) with a certain probability of taking each branch.

Suppose your table has N = 1024 entries. That means it takes 10 bits to index the table, because log(1024) = 10 (base 2). Searching is a process of learning those 10 bits.

If a decision point has roughly equal probability of going either way, then it has an entropy of -0.5 log(0.5) - 0.5 log(0.5) (base 2) which is 1 bit, so it learns 1 bit of information on each decision. Voila! It takes roughly 10 decisions, or log(N). So the sorting is O(N log(N)). All the NlogN sorting algorithms are based on binary decisions having roughly equally likely outcomes.

Suppose you are doing linear search (as in bubble sort). On the first decision, the chance of being right is 1/1024 vs 1023/1024. The entropy is 1/1024 * log(1024/1) + 1023/1024 * log(1024/1023) or roughly 10/1024 + 0 (i.e. about .01). So on the first decision you only learn about .01 bit because the outcomes are so skewed. That is why linear search is inefficient. It takes on the order of N operations, so sorting takes O(N*N).

(Aside: linear search is actually exponential. If you define the information content of a problem as n = log(N), then linear search takes O(2^n) steps. That's why things like unguided game-tree search are exponential in number of moves.)

On the other hand, suppose rather than making binary decisions, you are indexing. You take some or all of the bits of the word that you're looking for, and use them as an index into an array, where you've pre-stored answers. If that indexing operation has 1024 equally likely outcomes, then it learns 10 bits, so it only takes roughly 1 operation to get the answer. That is the basic idea behind hash coding. If your hash function happens to perserve order, it can be used to make an O(N) sorting algorithm.

There are fancy ways to analyze algorithms, and maybe that's what you need, but looking at them as learning bits of information serves 99% of my needs.

share|improve this answer

Most algorithm analysis courses at Universities are only open to upper level undergraduates and graduate students. Why would you expect this topic to be easy to learn? There are algorithms that are simple to analyze and the Wikipedia article on Big O notation is probably adequate to understand how and perform an analysis on them, but doing an analysis on any reasonably complex algorithm is non-trivial. The Cormen book is probably the most widely used book on algorithms, but I wouldn't consider learning algorithm analysis from it or any other book painless.

share|improve this answer

The single most helpful tool I've had for algorithms is Introduction to Algorithms.

It's the single best resource I know of for algorithms. It covers so many topics in good depth and has examples throughout. I still refer to it quite frequently.

Without that book my algorithms analysis class would have been a pain.

share|improve this answer

I attended a 1 day (9 hr) training on algorithms about a year ago. The prereq was either an undergraduate degree in Comp Sci, or at least 2 years of programming experience. I found the training to be VERY helpful, and especially the physical bookmarks that I got were worth my time (and money, whatever the company paid). I would attend another such session if given a chance, even if it was basically the same. Obviously, a lot depends upon instructor. Ours was great - funny and practical and active programmer, though he had significant teaching experience.

share|improve this answer

If you prefer to look and listen rather than to read I can recommend the MIT course "Introduction to Algorithms". You can watch it free here: http://academicearth.org/courses/introduction-to-algorithms

I found it very good and pedagogical even though I don't have enough knowledge of the math involved.

share|improve this answer

I recommend Data Structures and Algorithms by Adam Drozdek available in Java and C++ editions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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