vote up 7 vote down star
1

Hey All,

So I think I'm going to get buried for asking such a trivial but I'm a little confused about something.

I have implemented quicksort in Java and C and I was doing some basic comparissons. The graph came out as two straight lines, with the C being 4ms faster than the Java counterpart over 100,000 random integers.

Results

The code for my tests can be found here;

android-benchmarks

I wasn't sure what an (n log n) line would look like but I didn't think it would be straight. I just wanted to check that this is the expected result and that I shouldn't try to find an error in my code.

I stuck the formula into excel and for base 10 it seems to be a straight line with a kink at the start. Is this because the difference between log(n) and log(n+1) increases linearly?

Thanks,

Gav

flag

Google image search seems surprisingly good on searched such as "n log n". – Tom Hawtin - tackline Jun 8 at 16:49

6 Answers

vote up 15 vote down check

Make the graph bigger and you'll see that O(n logn) isn't quite a straight line. But yes, it is pretty near to linear behaviour. To see why, just take the logarithm of a few very large numbers.

For example (base 10):

log(1000000) = 6
log(1000000000) = 9
…

So, to sort 1,000,000 numbers, an O(n logn) sorting adds a measly factor 6 (or just a bit more since most sorting algorithms will depend on base 2 logarithms). Not an awful lot.

In fact, this log factor is so extraordinarily small that for most orders of magnitude, established O(n logn) algorithms outperform linear time algorithms. A prominent example is the creation of a suffix array data structure.

A simple case has recently bitten me when I tried to improve a quicksort sorting of short strings by employing radix sort. Turns out, for short strings, this (linear time) radix sort was faster than quicksort, but there was a tipping point for still relatively short strings, since radix sort crucially depends on the length of the strings you sort.

link|flag
1  
Fantastic answer, thanks for clearing this up for me. Just reading through your post now, really interesting stuff. – gav Jun 7 at 23:02
1  
Good sorts tend to go for a linear algorithm once they have divided and conquered into sufficiently small pieces. Exactly how small is a matter of benchmarking (real data). – Tom Hawtin - tackline Jun 8 at 16:48
1  
Tom: I'm not sure what exactly you mean by linear. Often, sorting algorithms do the opposite, using O(n^2) sortings such as insertion sort on small portions, since their constant factor is so small that even quadratic runtime outperforms nlogn sorting. On the other hand, introsort uses a strategy to break out of too deep recursions – but again, this isn't anywhere linear, it just exchanges a quadradic worst case for O(n logn) behaviour. – Konrad Rudolph Jun 8 at 19:40
vote up 3 vote down

For even more fun in a similar vein, try plotting the time taken by n operations on the standard disjoint set data structure. It has been shown to be asymptotically n α(n) where α(n) is the inverse of the Ackermann function (though your usual algorithms textbook will probably only show a bound of n log log n or possibly n log* n). For any kind of number that you will be likely to encounter as the input size, α(n) ≤ 5 (and indeed log* n ≤ 5), although it does approach infinity asymptotically.

What I suppose you can learn from this is that while asymptotic complexity is a very useful tool for thinking about algorithms, it is not quite the same thing as practical efficiency.

link|flag
vote up 2 vote down

log(N) is (very) roughly the number of digits in N. So, for the most part, there is little difference between log(n) and log(n+1)

link|flag
1  
log-base-*10* is very roughly the number of digits in N (assuming you're using the decimal representation). Most sort/search algorithms would be using log-base-2 which, while proportional to log-base-10 (so the big-O still applies), is nothing like what you describe :-) – paxdiablo Jun 8 at 1:45
Another way to say it is that log-base-2 is roughly the number of digits in N when written in binary, aka the number of bits required to represent N. – Tyler McHenry Aug 2 at 16:33
vote up 1 vote down

FYI, quicksort is actually O(n^2), but with an average case of O(nlogn)

FYI, there is a pretty big difference between O(n) and O(nlogn). That's why it's not boundable by O(n) for any constant.

For a graphical demonstration see:

O(n) vs O(nlogn)

link|flag
vote up 0 vote down

Try plotting an actual linear line on top of it and you'll see the small increase. Note that the Y value at 50,0000 is less than the 1/2 Y value at 100,000.

It's there, but it's small. Which is why O(nlog(n)) is so good!

link|flag
It's still a damn sight better than O(n^2). – paxdiablo Jun 8 at 1:46
vote up 0 vote down
  1. Usually the O( n*log(n) ) algorithms have a 2-base logarithmic implementation.
  2. For n = 1024, lg(1024) = 10, so n*lg(n) = 1024*10 = 10.240 calculations, an increase by an order of magnitude.

So, O(N*log N) is similar to linear only for a small amount of data.

Tip: don't forget that quicksort behaves very well on random data and that it's not an O(n*log(n)) algorithm.

link|flag
1  
All logarithms are the same, they differ only in scale. So I don't see the significance of your first statement. Also, I don't agree with your statement that O(n log n) only similar to linear for a small amount of data. Once again, it's a scaling thing. As a counter-example, just look at the graphs in the original question. – waxwing Jun 7 at 19:54
I don't mean graphically similar (to a straight line) but time-complexity similar. O(n*logn) time can easily be an order of magnitude bigger than O(n). If the graphs compared O(n*logn) and O(n) algorithms you would see what I mean. :) As the N goes bigger and bigger the O(n*logn) moves to next logarithimic scales. – Nick D Jun 7 at 20:34

Your Answer

Get an OpenID
or

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