Is there a master list of the Big-O notation for everything? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:39:35Z http://stackoverflow.com/feeds/question/180510 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything 9 Is there a master list of the Big-O notation for everything? raldi 2008-10-07T21:28:01Z 2008-10-16T20:07:22Z <p>Is there a master list of the Big-O notation for everything? Data structures, algorithms, operations performed on each, average-case, worst-case, etc.</p> http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything/180517#180517 2 Answer by Oliver Hallam for Is there a master list of the Big-O notation for everything? Oliver Hallam 2008-10-07T21:29:55Z 2008-10-07T21:29:55Z <p>Try "<a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to Algorithms</a>" by Cormen, Leisersen, and Rivest. If its not in there its probably not worth knowing.</p> http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything/180521#180521 0 Answer by tgamblin for Is there a master list of the Big-O notation for everything? tgamblin 2008-10-07T21:30:41Z 2008-10-07T21:30:41Z <p><a href="http://mitpress.mit.edu/algorithms/" rel="nofollow">Introduction to Algorithms, Second Edition</a>, aka CLRS (Cormen, Leiserson, Rivest, Stein), is the closest thing I can think of.</p> <p>If that fails, then try <a href="http://www-cs-faculty.stanford.edu/~knuth/taocp.html" rel="nofollow">The Art of Computer Programming</a>, by Knuth. If it's not in those, you probably need to do some real research.</p> http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything/180527#180527 4 Answer by Alan for Is there a master list of the Big-O notation for everything? Alan 2008-10-07T21:31:49Z 2008-10-10T08:52:05Z <p>The <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Cormen book</a> is more about teaching you how to prove what Big-O would be for a given algorithm, rather than rote memorization of algorithm to its Big-O performance. The former is far more valuable than the latter, and requires an investment on your part.</p> http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything/180592#180592 2 Answer by Soraz for Is there a master list of the Big-O notation for everything? Soraz 2008-10-07T21:47:31Z 2008-10-07T21:47:31Z <p>In c++ the STL standards is defined by the Big-O characteristics of the algorithms as well as the space requirements. That way you could switch between competing implementations of STL and still know that your program had the same-ish runtime characteristics. Particularily good STL implementations could even special case lists of particular types to be better than the standard-requirements.</p> <p>It made it easy to pick the correct iterator or list type for a particular problem, because you could easily weigh between space consumption and speed.</p> <p>Ofcourse Big-O is only a guide line as all constants are removed. If an algorithm runs in k*O(n), it would be classified as O(n), but if k is sufficiently high it could be worse than O(n^2) for some values of n and m.</p> http://stackoverflow.com/questions/180510/is-there-a-master-list-of-the-big-o-notation-for-everything/180600#180600 3 Answer by ephemient for Is there a master list of the Big-O notation for everything? ephemient 2008-10-07T21:49:41Z 2008-10-07T21:49:41Z <p><a href="http://www.nist.gov/dads/" rel="nofollow">Dictionary of Algorithms and Data Structures</a> is a fairly comprehensive list, and includes complexity (Big-O) in the algorithms' descriptions. If you need more information, it'll be in one of the linked references, and there's always Wikipedia as a fallback.</p>