active questions tagged big-o - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T21:58:24Zhttp://stackoverflow.com/feeds/tag/big-ohttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909307/what-does-on-mean5what does O(N) mean [closed]Fire Crow2009-12-15T18:12:29Z2009-12-15T19:17:05Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/133008/what-is-big-o-notation-do-you-use-it">What is Big O notation? Do you use it?</a> </p>
</blockquote>
<p>Hi all,</p>
<p>fairly basic scalability notation question.</p>
<p>I recently recieved a comment on a post that my python ordered-list implimentation
"but beware that your 'ordered set' implementation is O(N) for insertions"</p>
<p>Which is great to know, but I'm not sure what this means.</p>
<p>I've seen notation such as n(o) o(N), N(o-1) or N(o*o)</p>
<p>what does the above notation refer to?</p>
http://stackoverflow.com/questions/1907929/stuck-with-o-notation4Stuck with O notationstan2009-12-15T14:45:41Z2009-12-15T15:58:13Z
<p>I am comparing two algorithms, Prim's and Kruskal's.</p>
<p>I understand the basic concept of time complexity and when the two work best (sparse/dense graphs)</p>
<p>I found this on the Internet, but I am struggling to convert it to English.</p>
<pre><code>dense graph: Prim = O(N2)
Kruskal = O(N2*log(N))
sparse graph: Prim = O(N2)
Kruskal = O(N log(N))
</code></pre>
<p>It's a bit of a long shot, but could anyone explain what is going on here?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1830607/complexity-of-finding-all-simple-paths-using-depth-first-search0Complexity of finding all simple paths using depth first search?hexium2009-12-02T04:12:26Z2009-12-13T17:38:10Z
<p>Thanks to everyone replying with ideas and alternate solutions. More efficient ways of solving problems are always welcome, as well as reminders to question my assumptions. That said, I'd like you to ignore for a moment what problem I'm trying to solve with the algorithm, and just help me analyze the big-Oh complexity of my algorithm as I've written it -- an all simple paths in a graph using depth-limited search as described <a href="http://www.itl.nist.gov/div897/sqg/dads/HTML/allSimplePaths.html" rel="nofollow">here</a>, and implemented <a href="http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices/58446#58446">here</a>. Thanks!</p>
<p>Edit: This is homework, but I've already submitted this assignment and I'd just like to know if my answer correct. I get a little confused over Big-O complexity when recursion is involved. </p>
<p><hr></p>
<p>Original question below: </p>
<p>I'm trying to find the complexity of an all-paths search as given by <a href="http://www.itl.nist.gov/div897/sqg/dads/HTML/allSimplePaths.html" rel="nofollow">this</a> algorithm.
Given two vertices, I'm finding all simple paths between them using a depth-first search. </p>
<p>I know that the time complexity of DFS is O(V+E) and its space complexity is O(V), and my intuition is that the complexity of an all-paths search will be more than that, but I'm unable to determine what it will be. </p>
<p>Related SO questions <a href="http://stackoverflow.com/questions/1642139/algorithm-to-find-the-number-of-distinct-paths-in-a-directed-graph">here</a> and <a href="http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices">here</a>. </p>
<p>Update (in response to a comment below): </p>
<p>I'm trying to solve the <a href="http://en.wikipedia.org/wiki/Six%5FDegrees%5Fof%5FKevin%5FBacon/" rel="nofollow">six degrees of Kevin Bacon</a> problem. This generally requires finding the lowest degree of separation between a pair of actors, but I have to find ALL degrees of separation (for now, less than 6, but this can change). </p>
http://stackoverflow.com/questions/1850877/solve-travelling-salesman-problem-in-linear-time2Solve "Travelling salesman problem" in linear timeNifle2009-12-05T02:14:05Z2009-12-12T00:54:25Z
<p>How do I tell a "project lead" to <em>f--k off</em> and learn some computer science when he tells me to do something that amounts to solving a generic <strong>Travelling salesman problem in linear time.</strong></p>
<p>One of his <em>insights</em> was: 1,000 nodes takes only 1 second then 30,000 should take 30 seconds. I'm not up to teaching combinatorics and Big O to idiots.</p>
<p>[edited]<br>
How do I educate my coworkers or boss in this problem domain without making him look like an idiot?<br></p>
http://stackoverflow.com/questions/1891506/comparison-sorting-algorithm-complexity1Comparison Sorting Algorithm ComplexityJC2009-12-11T23:17:48Z2009-12-11T23:29:38Z
<p>Why is the lower bound for the time complexity of comparison-based sort algorithms O(n log n)?</p>
http://stackoverflow.com/questions/1861393/hamiltonian-circuit0Hamiltonian circuit .JK2009-12-07T17:10:26Z2009-12-10T11:01:16Z
<p>what is the Big-o complexity of finding a Hamiltonian circuit in a given order Markov chain using DFS?</p>
http://stackoverflow.com/questions/1879398/big-o-complexity-4Big-O complexityJK2009-12-10T08:15:31Z2009-12-10T08:20:19Z
<p>Given a Markov chain I want to find the Hamiltonian circuit using DFS in any order of Markov chain. If its possible using DFS and if yes then what is the Big-o complexity of finding a Hamiltonian circuit in a given order Markov chain using DFS?</p>
http://stackoverflow.com/questions/1853208/quicksort-superiority-over-heap-sort1Quicksort superiority over Heap SortMyth172009-12-05T19:38:31Z2009-12-05T19:50:21Z
<p>Heap Sort has a worst case complexity is O(nlog) n wnile Quicksort is O(n^2).
But emperical evidences say quicksort is superior. Why is that??</p>
http://stackoverflow.com/questions/1828160/javascript-run-time-analysis1Javascript run-time analysiskingrichard20052009-12-01T19:01:17Z2009-12-05T13:02:54Z
<p>Hello, I've written a Javascript file, using jQuery, that I would like to perform run-time tests on. I've never done this before and was just curious on how to go about it. One site I visited suggested this as a measurement:</p>
<pre><code>var start = (new Date).getTime();
/* Run a test. */
var diff = (new Date).getTime() - start;
</code></pre>
<p>This makes sense, right now my script is acting on a web page, all it does is sort clicked-on columns in a table. What I'm interested in knowing, besides the actual timings, is how to interpret the timings in Big-O notation. Also, is this the most standard method of measuring script run-times? Your thoughts are appreciated.</p>
<p>UPDATE:
Thanks guys for your input, installed Firebug and am playing with the profiler. I'll attempt to see if I can come up with an approximation to check the timings against for Big-O notation.</p>
http://stackoverflow.com/questions/1843131/big-o-notation-what-are-the-differences2Big O Notation - what are the differences?Jenny2009-12-03T21:44:57Z2009-12-04T17:17:17Z
<p>Hi,</p>
<p>I'm wondering what the difference between O(n^2) and O(n.log(n)) is?</p>
<p>Thanks~</p>
http://stackoverflow.com/questions/1734030/how-to-add-merge-several-big-os-into-one1How to add/merge several Big O's into oneR.A2009-11-14T11:51:45Z2009-11-30T09:08:32Z
<p>If I have an algorithm which is comprised of (let's say) three sub-algorithms, all with different O() characteristics, e.g.:</p>
<ul>
<li>algorithm A: O(n)</li>
<li>algorithm B: O(log(n))</li>
<li>algorithm C: O(n log(n))</li>
</ul>
<p>How do I theoretically estimate the O() for the entire algorithm? I.e. not clocking it or performing any other practical measurement. </p>
<p>Is there a well known formula or procedure?</p>
http://stackoverflow.com/questions/1815031/please-help-me-understand-big-o-3Please help me understand Big-O? [closed]FoF2009-11-29T08:41:15Z2009-11-29T10:12:15Z
<p>would you please solve this question step by step</p>
<p>find the Big-O , <code>C</code> ,<code>n'</code> for:</p>
<ol>
<li><code>log(n!)</code></li>
<li><code>log(3n^4 + 2n^2 +7 )</code></li>
</ol>
http://stackoverflow.com/questions/1787197/big-o-notation-interview-questions0Big O Notation Interview Questionsnick2009-11-24T01:13:08Z2009-11-27T23:00:21Z
<p>What Big-O notation questions have you been asked? Did you find them to be good questions? Did the interviewer actually understand the concept?</p>
http://stackoverflow.com/questions/1178173/regex-implementation-that-can-handle-machine-generated-regexs-non-backtracking11Regex implementation that can handle machine-generated regex's: *non-backtracking*, O(n)?Eamon Nerbonne2009-07-24T14:46:15Z2009-11-26T13:45:43Z
<p>Or, to restate...</p>
<h1>Where can I find <em>robustly</em> fast Regex implementation?</h1>
<p>Does anyone know of a normal <em>non-backtracking</em> (<code>System.Text.RegularExpressions</code> backtracks) linear time regex implementation either for .NET or native and reasonably usable from .NET? To be useful, it would need to:</p>
<ul>
<li>have a <strong>worst case</strong> time-complexity of regex evaluation of <strong>O(m*n)</strong> where m is the length of the regex, and n the length of the input.</li>
<li>have a <strong>normal time-complexity of O(n)</strong>, since almost no regular expressions actually trigger the exponential state-space, or, if they can, only do so on a minute subset of the input.</li>
<li>have a <strong>reasonable construction speed</strong> (i.e. no potentially exponential DFA's)</li>
<li>be intended for use by human beings, not mathematicians - I don't want to reimplement unicode character classes, say.</li>
<li><strong>bonus points</strong> for practicality if it implements stack-based features which <strong>let it handle nesting</strong> at the expense of consuming O(n+m) memory rather than O(m) memory.</li>
<li>bonus points for <strong><em>either</em></strong> capturing subexpressions <strong><em>or</em></strong> replacements (if there are an exponential number of possible subexpression matches, then enumerating <em>all</em> of them is inherently exponential - but enumerating the first few shouldn't be, and similarly for replacements). You can workaround missing either feature by using the other, so having either one is sufficient.</li>
<li>bonus points for being able to treat regexes as first class values (so you can take the union, intersection, concatenation, negation - in particular negation and intersection as those are very hard to do by string manipulation of the regex definition)</li>
<li><strong>Backreferences are out</strong>, they are fundamentally unreliable; i.e. can always exhibit exponential behavior given pathological input cases.</li>
</ul>
<p>Such algorithms exist - but are there any practically usable <em>implementations</em> accessible from .NET?</p>
<h2>Background: (you can skip this)</h2>
<p>I like using Regex's for quick and dirty text clean-ups, but I've repeatedly run into issues where the common backtracking NFA implemtation used by perl/java/python/.NET shows exponential behavior. These cases are unfortunately rather easy to trigger as soon as you start automatically generating your regular expressions. Even non-exponential performance can become exceedingly poor when you alternate between regexes that match the same prefix - for instance, in a really basic example, if you take a dictionary and turn it into a regular expression, expect terrible performance.</p>
<p>The .NET implementation is OK if you have a specifically defined narrow aim with your (human-written) regex, and if you can afford the rare buggy (in the non-terminating sense) corner case regex since you can just rewrite it, but it's not so good if your regexes are potentially concatenated or machine-written (or even untrusted), and may be longer than a few lines. </p>
<p>More succinctly, it's fine for powershell, but not so fine for adaptive spam-filtering.</p>
<p><strong>It's vital to have a Regex implementation without these corner cases if you want to use it with machine-generated or untrusted regular expressions</strong>. You can't tweak what you aren't writing yourself.</p>
<h2>Alternatives</h2>
<p>Now, not all regex libraries have these limitations - IIRC plain old grep does not, for instance. But grep isn't everywhere, and it's not a library, and you can't cache a constructed Regex so it performs terribly if you have a complex Regex and millions of short strings to test.</p>
<p>I've also used the exceedingly powerful <a href="http://www.let.rug.nl/vannoord/Fsa/" rel="nofollow">FSA toolkit</a> which even allows you to make arbitrary translations (i.e. not just capture subexpressions, but transduce them to some other finite-state language), and to define subexpressions to support DRY. It'll even graphically illustrate the translation process. (I bet many people that love regular expressions would absolutely drool over regular transducers if these were actually available in normal programming environments). </p>
<p>Another alternative is using a full parser, such as the excellent <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> - but antlr's syntax is far more verbose, and it's also more powerful (which can be problematic in that it is possible to write matching expressions which cannot be translated into a parser - in short the language is too strong, whereas the more limited regex's can be guaranteed to work and thus are more easily suitable to machine-generation). ANTLR also has a great graphical IDE.</p>
<p>The problem with these tools are that they integrate with normal programming environments badly. The FSA toolkit is in prolog (?!?), and while it's easy to machine-generate valid expression, I'd prefer not to have a prolog dependency. ANTLR is designed for human use, but it's not so great for machine-generated parsers (it's too unreliable - how do you automatically resolve ambiguities or left-recursion in the grammars?) The FSA toolkit is very amenable to machine-<em>generated</em> a pattern matchers, but it's not so easy to consume one in .NET. ANTLR makes parsers which are easy to <em>consume</em> in .NET, but it's not so easy to machine generate.</p>
<p><strong>Edit:</strong> For a quick overview of why such an implementation is possible via straightforward NFA simulation, and has in fact existed since the 60s, see <a href="http://swtch.com/~rsc/regexp/regexp1.html" rel="nofollow">Regular Expression Matching Can Be Simple And Fast</a>. For that matter, the FSA toolkit is obviously using some robustly fast algorithm, it's just not that practical for me.</p>
<p><strong>Edit 2:</strong> Added a reference to <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a>, emphasised machine-generation aspect.</p>
<p><em>But back to business: anybody know of a usable and reliably performant Regex implementation?</em></p>
<p><strong><em>Edit:</em></strong> current contenders: <a href="http://laurikari.net/tre/" rel="nofollow">TRE</a> and the unix port of plan9's regex lib. TRE looks more promising in the sense that it has fewer dependencies. TRE doesn't support regexes as first class values, however, it does do capturing/replacing, and even does backreferences (though obviously you lose speed guarantees then). And it has a mega-nifty approximate matching mode! Both implementations are C, so that'd require interop via C++/CLI to get working.</p>
http://stackoverflow.com/questions/1796226/best-practices-for-regex-performance-vs-sheer-iteration2Best practices for regex performance VS sheer iterationmindas2009-11-25T11:08:25Z2009-11-25T11:21:27Z
<p>I was wondering if there are any general guidelines for when to use regex VS <code>"string".contains("anotherString")</code> and/or other String API calls?</p>
<p>While above given decision for <code>.contains()</code> is trivial (why bother with regex if you can do this in a single call), real life brings more complex choices to make. For example, is it better to do two <code>.contains()</code> calls or a single regex?</p>
<p>My rule of thumb was to always use regex, unless this can be replaced with a single API call. This prevents code against bloating, but is probably not so good from code readability point of view, especially if regex tends to get big.</p>
<p>Another, often overlooked, argument is performance. How do I know how many iterations (as in "Big O") does this regex require? Would it be faster than sheer iteration? Somehow everybody assumes that once regex looks shorter than 5 <code>if</code> statements, it must be quicker. But is this always the case? This is especially relevant if regex cannot be pre-compiled in advance.</p>
http://stackoverflow.com/questions/1790964/difference-between-big-o-notation-and-big-o-estimate0Difference between big-O notation and big-O estimate [closed]sozy2009-11-24T15:52:50Z2009-11-24T18:45:41Z
<p>Hi every one ..</p>
<p>I want to know what is the difference between the (big-O notation and the big-O estimate ) ..</p>
<p>It's will be good to explain it on these examples :</p>
<pre><code>1) for(int i = 0; i < n; i++) sum++;
2) for(int i = 0; i < n; i++)
for(int j = 0; j< n; j++)
sum++;
</code></pre>
<p>because I want to know the difference, especially when I have more than one loop ..</p>
http://stackoverflow.com/questions/1759291/graph-adjacency-list-how-to-implement-o1-lookup-for-nodes-vertexes-array1Graph Adjacency List How to implement O(1) lookup for nodes/vertexes. Array?misterfixit2009-11-18T21:44:57Z2009-11-23T23:56:08Z
<p>I read in the specifications for graphs implemented with Adjacency List that adding edges is done in constant time. BUT that would require a node lookup with O(1). I would like best possible performance. The question here is which datatype would would give me that. Hashmap has been considered, worst case with hashmap is still O(n). </p>
<p>Could I use an Array for this? The node's can be of any datatype, generics. Could this be done with some hash function generating index values based on the node alone? That would give me O(1). Sure I can just capitalize and use LinkedList with indexOf. Constant time is best. </p>
http://stackoverflow.com/questions/1776306/what-kind-of-algorithms-have-shortened-running-time-for-longer-inputs1What kind of algorithms have shortened running time for longer inputs? [closed]Dasuraga2009-11-21T18:28:20Z2009-11-21T18:42:01Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/905551/are-there-any-o1-n-algorithms">are there any O(1/n) algorithms?</a> </p>
</blockquote>
<p>I've been reading up on various algorithms recently, and have gotten very used to seeing things with O([some combination of n, n^2 and log n). It seems pretty normal for algorithms to increase in running time with more input, so this doesn't really bother me, but are there many well-known algorithms that decrease in running time with increased input? Or are there other algorithms with something like, say, periodic running time based off of input length?</p>
http://stackoverflow.com/questions/1753843/find-two-numbers-in-a-binary-search-tree-that-add-up-to-a-third-number0Find two numbers in a binary search tree that add up to a third numberGeek2009-11-18T05:31:12Z2009-11-18T08:02:59Z
<p>You are given a BST of numbers. You have to find two numbers (a, b) in it such that <code>a + b = S</code>, in O(n) time and O(1) space.</p>
<p>What could be the algorithm?</p>
<p>One possible way could be two convert the BST to a doubly linked List and then start from the front and end:</p>
<pre><code>if front + end > S then end--
</code></pre>
<p>Or:</p>
<pre><code>if front + end < S then front++
</code></pre>
http://stackoverflow.com/questions/1750165/worst-case-running-time-big-o0Worst case running time (Big O)Youki2009-11-17T16:43:37Z2009-11-17T17:01:22Z
<p>Hi every one. I have this question, and I don't know how to solve it, because I don't understand it. :(</p>
<p>The question is:</p>
<blockquote>
<p>Programs A and B are analyzed and are found to have
worst case running times no greater than 150<i>n</i> log <em>n</em> and <em>n</em><sup>2</sup>, respectively.
Answer the following questions:</p>
<p>i) Which program has the better guarantee on the running time for large
values of <em>n</em> (<em>n</em> > 10000)?</p>
<p>ii) Which program has the better guarantee on the running time for small
values of <em>n</em> (<em>n</em> < 100)?</p>
</blockquote>
<p>Can any one help me and explain it for me? </p>
http://stackoverflow.com/questions/1713082/what-is-the-base-of-the-logarithm-for-the-purposes-of-algorithms4What is the base of the logarithm for the purposes of Algorithms?sabika shamim2009-11-11T04:49:33Z2009-11-16T13:17:10Z
<p>While considering O(log(N)) for time complexity, what is the base of log?</p>
http://stackoverflow.com/questions/1740824/base-of-logarithm-in-complexity-of-the-algorithm5Base of Logarithm in Complexity Of The Algorithm [closed]Moody2009-11-16T08:28:21Z2009-11-16T13:15:20Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1713082/what-is-the-base-of-the-logarithm-for-the-purposes-of-algorithms">What is the base of the logarithm for the purposes of Algorithms?</a> </p>
</blockquote>
<p>While writing the complexity of an algorithm to be in terms of logarithm, e.g. log(N), Log(NlogN) or log (N^2logN), etc., what should be the base of the logarithm, and why?</p>
http://stackoverflow.com/questions/1734740/what-is-the-complexity-of-inserting-into-sorted-link-list-in-big-o-notation1What is the complexity of inserting into sorted link list in big-O notation?Tron2009-11-14T16:32:00Z2009-11-14T16:43:22Z
<p>What is the complexity of inserting into sorted link list in big-O notation? Let say I have 5 elements and what is the complexity to insert all of them.</p>
<p>Thank you very much</p>
http://stackoverflow.com/questions/1729949/whats-my-big-o1What's my Big O?R.A2009-11-13T15:30:57Z2009-11-13T23:10:24Z
<p>My program of sorting values clocks at:</p>
<ul>
<li>100000 8s</li>
<li>1000000 82s</li>
<li>10000000 811s</li>
</ul>
<p>Is that O(n)?</p>
http://stackoverflow.com/questions/1713540/what-is-the-complexity-of-this-algorithm-1What is the complexity of this algorithm? Ben Fossen2009-11-11T07:04:21Z2009-11-11T07:32:22Z
<pre><code>procedure max (a[1..n]: integers)
max := a[1]
for i := 2 to n
if max < a[i] then max := a[i]
</code></pre>
<p>Is the complexity <code>O(1)</code> or <code>O(n)</code> with the best case scenario? The sequence contains <code>n</code> elements. It is pseudocode.</p>
http://stackoverflow.com/questions/1691458/sorted-array-big-o-notation-1Sorted array Big o notationRoxy2009-11-07T00:41:10Z2009-11-07T01:37:28Z
<p>Hello
I just have a simple question, why is the big O notation of a sorted array O(log N)? It will be a sorted array. </p>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm22Algorithm to determine if array contains n...n+m?Kyle Cronin2008-10-07T03:19:01Z2009-11-06T19:23:14Z
<p>I saw this question on Reddit, and there were no positive solutions presented, and I thought it would be a perfect question to ask here. This was in a thread about interview questions:</p>
<blockquote>
<p>Write a method that takes an int array of size m, and returns (True/False) if the array consists of the numbers n...n+m-1, all numbers in that range and only numbers in that range. The array is not guaranteed to be sorted. (For instance, {2,3,4} would return true. {1,3,1} would return false, {1,2,4} would return false.</p>
<p>The problem I had with this one is that my interviewer kept asking me to optimize (faster O(n), less memory, etc), to the point where he claimed you could do it in one pass of the array using a constant amount of memory. Never figured that one out.</p>
</blockquote>
<p>Along with your solutions please indicate if they assume that the array contains unique items. Also indicate if your solution assumes the sequence starts at 1. (I've modified the question slightly to allow cases where it goes 2, 3, 4...)</p>
<p><strong>edit:</strong> I am now of the opinion that there does not exist a linear in time and constant in space algorithm that handles duplicates. Can anyone verify this?</p>
<p>The duplicate problem boils down to testing to see if the array contains duplicates in O(n) time, O(1) space. If this can be done you can simply test first and if there are no duplicates run the algorithms posted. So can you test for dupes in O(n) time O(1) space?</p>
http://stackoverflow.com/questions/1678522/what-is-the-running-time-of-these-mystery0What is the running time of these mystery?derrdji2009-11-05T05:28:54Z2009-11-06T00:23:51Z
<pre><code>mystery(int A[1..n], int n) {
// pre: n is a power of 2 for i=1..n {
for i = 1...n {
A[i] = A[i] + 1;
}
if (n>1) mystery(A, n/2);
}
}
</code></pre>
<p>I think the worst case, it runs in O(n), am I right?</p>
<p><hr></p>
<p>Edit: This is from another old exam (which has answers for us), but the following algorithm runs in O(n*log n) time (according by the answer). Why so? I though these two should only differ by some constants.</p>
<pre><code>void silly (int n)
if (n>1)
for (int i=0; i<n; i++)
output "looping for fun"
silly(n/2)
for (int i=0; i<n; i++)
output "looping for more fun"
silly(n/2)
for (int i=0; i<n; i++)
output "looping for even more fun"
</code></pre>
http://stackoverflow.com/questions/1634995/complexity-help-on2-0nlog-etc1complexity help..O(n^2), 0(nlog) etcNewcomer2009-10-28T03:06:53Z2009-11-04T20:52:11Z
<p>hey there could someone please help me determine the complexity?. An example given in my class was </p>
<p><em>bubble sort</em></p>
<pre><code>int main() {
int a[10] = {10,9,8,7,6,5,4,3,2,1};
int i,j,temp;
for (j=0;j<10;j++) {
for (i=0;i<9;i++) {
if (a[i] > a[i+1]) {
temp = a[i];
a[i] = a[i+1];
a[i+1] = temp;
}
}
}
for (i=0;i<10;i++) {
printf("%d ",a[i]);
}
}
</code></pre>
<p>which had a complexity of O(n^2) because it had two loops of O(n) hence O(n) x O(n).</p>
<p><hr /></p>
<p>and they said quicksort has an complexity of O(nlog(n)) .. why is this?</p>
<p>is it because as it goes around a loop it divides a number?</p>
<p>-thanks</p>
http://stackoverflow.com/questions/251781/how-to-find-the-kth-largest-element-in-an-unsorted-array-of-length-n-in-on6How to find the kth largest element in an unsorted array of length n in O(n)?MrDatabase2008-10-30T21:06:15Z2009-10-30T17:42:47Z
<p>I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this?</p>
<p>Cheers!</p>
<p>p.s. this is not for homework.</p>