Good text on order analysis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T18:50:06Z http://stackoverflow.com/feeds/question/62702 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62702/good-text-on-order-analysis 4 Good text on order analysis Paul Tomblin 2008-09-15T13:10:34Z 2009-04-09T13:09:01Z <p>As a self-taught computer programmer, I'm often at a loss to estimate the O() value for a particular operation. Yeah, I know off the top of my head most of the important ones, like for the major sorts and searches, but I don't know how to calculate one when something new comes along, unless it's blindingly obvious. Is there a good web site or text that explains how to do that? Heck, I don't even know what computer scientists call it, so I can't google it.</p> http://stackoverflow.com/questions/62702/good-text-on-order-analysis/62734#62734 6 Answer by Tim Howland for Good text on order analysis Tim Howland 2008-09-15T13:14:06Z 2008-09-15T13:14:06Z <p>It's called <a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">Big O Notation</a>, and it's used in <a href="http://en.wikipedia.org/wiki/Computational_complexity_theory" rel="nofollow">Computational Complexity Theory</a>.</p> <p>The wikipedia articles are a pretty good starting point, as are the bibliography at the bottom of the page.</p> http://stackoverflow.com/questions/62702/good-text-on-order-analysis/62746#62746 4 Answer by Bill the Lizard for Good text on order analysis Bill the Lizard 2008-09-15T13:14:45Z 2009-04-09T13:09:01Z <p><a href="http://mitpress.mit.edu/algorithms/" rel="nofollow">Introduction to Algorithms</a> is the standard text used at most universities. I've used it and can recommend those chapters on order analysis. I'd start with the articles in <a href="#62734" rel="nofollow">Tim Howland's answer</a>, though.</p> http://stackoverflow.com/questions/62702/good-text-on-order-analysis/62759#62759 1 Answer by ivan for Good text on order analysis ivan 2008-09-15T13:16:12Z 2008-09-15T13:16:12Z <p>It is called algorithm analysis and is a science in itself. Take a look at some of the books <a href="http://4storing.biz/f/3wv:24763a50" rel="nofollow">here</a></p> http://stackoverflow.com/questions/62702/good-text-on-order-analysis/62894#62894 2 Answer by eladv for Good text on order analysis eladv 2008-09-15T13:31:19Z 2008-09-15T13:31:19Z <p>If you really want to learn this topic, then you probably need a standard theory/algorithms textbook. I don't know of any website that can actually teach you complexity analysis ("complexity" or "time complexity" is how you call those O() values; you might also want to google for "analysis of algorithms" or "introduction to algorithms" or such).</p> <p>But before that -- a free option. There are slides from a course given by Erik Demaine and Charles Leiserson in MIT, that are free and look great. I would definitely try to read them and see if that works for you. They are <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/LectureNotes/" rel="nofollow">here</a>.</p> <p>Now, textbooks:</p> <p>The classical choice for a textbook is Cormen et al's book <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to Algorithms</a> (there might be a cheap version available to buy <a href="http://www.fetchbook.info/fwd_description/search_9780262032933.html" rel="nofollow">here</a> and I remember seeing a free (possibly illegal) version online, but I don't remember where).</p> <p>A more recent and modern-style book, which is IMO more fun to read and a better choice, is Kleinberg and Tardos' <a href="http://rads.stackoverflow.com/amzn/click/0321295358" rel="nofollow">Algorithm Design</a>.</p> <p>Here are some websites with information (I got these by googling "algorithm analysis lecture notes" without the quotes):</p> <ul> <li><a href="http://www.personal.kent.edu/~rmuhamma/Algorithms/algorithm.html" rel="nofollow">Algorithms Lecture Notes</a></li> <li><a href="http://www.cs.sunysb.edu/~algorith/lectures-good/index.html" rel="nofollow">Lecture notes by Steve Skiena</a></li> </ul> <p>The above is written by a computer science theorist. So programmers or other practical people might have some different opinions.</p> http://stackoverflow.com/questions/62702/good-text-on-order-analysis/70686#70686 0 Answer by ivan for Good text on order analysis ivan 2008-09-16T09:24:09Z 2008-09-16T09:24:09Z <blockquote> <p><em>Your links takes me to a site in</em> <em>Russian that seems to want a userid</em> <em>and password. Legitimate mistake, or</em> <em>troll? Paul Tomblin</em></p> </blockquote> <p>The site is in Bulgarian and you shouldn't need a password to access the list of files I linked to and download some of them. Unless of course there is an access restiction for IPs from outside Bulgaria, which I really don't know.</p> <p>Sorry, I don't know how to make a comment.</p>