vote up 8 vote down star
2

I wonder whether there is any automatic way of determining (at least roughly) the Big-O time complexity of a given function?

If I graphed an O(n) function vs. an O(n lg n) function I think I would be able to visually ascertain which is which; I'm thinking there must be some heuristic solution which enables this to be done automatically.

Any ideas?

Edit: I am happy to find a semi-automated solution, just wondering whether there is some way of avoiding doing a fully manual analysis.

flag

50% accept rate
1  
You could try and get someone to do it on rentacoder, just like they did it with the halting problem :) – DrJokepu Jan 26 at 18:27
huh? Lol - wow those rentacoders are just tops, aren't they? =P – Erik Jan 26 at 18:52
If all you need is just a polynomial fitting of some sample data then here's an example stackoverflow.com/questions/464960/… (see link to the source code at the end of the post). – J.F. Sebastian Jan 26 at 21:42

16 Answers

vote up 40 vote down check

It sounds like what you are asking for is an extention of the Halting Problem. I do not believe that such a thing is possible, even in theory.

Just answering the question "Will this line of code ever run?" would be very difficult if not impossible to do in the general case.

Edited to add: Although the general case is intractable, see here for a partial solution: http://research.microsoft.com/apps/pubs/default.aspx?id=104919

Also, some have stated that doing the analysis by hand is the only option, but I don't believe that is really the correct way of looking at it. An intractable problem is still intractable even when a human being is added to the system/machine. Upon further reflection, I suppose that a 99% solution may be doable, and might even work as well as or better than a human.

link|flag
This is the correct answer. Rack him! – T.E.D. Jan 26 at 18:25
Yes, it is an important thing to point out. Nonetheless there are still semi-automated solutions, as the OP has stated he is content with. – Noldorin Jan 26 at 18:28
Where do I find semi-automated solutions? I'd like to see one, as I have not been able to visualize one. – David Thornley Jan 26 at 18:41
The Halting Problem is only a problem if: 1) Your function can enter a state from which it will never finish. (Hopefully your production code doesn't fall into this category). - AND - 2) Your analyzer is unable to determine, by looking at the code, that #1 applies to your function. – mbeckish Jan 26 at 19:13
1  
I believe that is the very definition of the problem. =P – Erik Jan 26 at 19:22
show 4 more comments
vote up 20 vote down

You can run the algorithm over various size data sets, and you could then use curve fitting to come up with an approximation. (Just looking at the curve you create probably will be enough in most cases, but any statistical package has curve fitting).

Note that some algorithms exhibit one shape with small data sets, but another with large... and the definition of large remains a bit nebulous. This means that an algorithm with a good performance curve could have so much real world overhead that (for small data sets) it doesn't work as well as the theoretically better algorithm.

As far as code inspection techniques, none exist. But instrumenting your code to run at various lengths and outputting a simple file (RunSize RunLength would be enough) should be easy. Generating proper test data could be more complex (some algorithms work better/worse with partially ordered data, so you would want to generate data that represented your normal use-case).

Because of the problems with the definition of "what is large" and the fact that performance is data dependent, I find that static analysis often is misleading. When optimizing performance and selecting between two algorithms, the real world "rubber hits the road" test is the only final arbitrator I trust.

EDIT: For those down voting this, please also make a comment as to why. My quality of posts won't likely improve if a down vote isn't paired with a improvement suggestion.

link|flag
1  
Most helpful answer. – Joey Robert Jul 14 at 16:09
vote up 8 vote down

I am curious as to why it is that you want to be able to do this. In my experience when someone says: "I want to ascertain the runtime complexity of this algorithm" they are not asking what they think they are asking. What you are most likely asking is what is the realistic performance of such an algorithm for likely data. Calculating the Big-O of a function is of reasonable utility, but there are so many aspects that can change the "real runtime performance" of an algorithm in real use that nothing beats instrumentation and testing.

For example, the following algorithms have the same exact Big-O (wacky pseudocode):

example a:

huge_two_dimensional_array foo
for i = 0, i < foo[i].length, i++
  for j = 0; j < foo[j].length, j++
    do_something_with foo[i][j]

example b:

huge_two_dimensional_array foo
for j = 0, j < foo[j].length, j++
  for i = 0; i < foo[i].length, i++
    do_something_with foo[i][j]

Again, exactly the same big-O... but one of them uses row ordinality and one of them uses column ordinality. It turns out that due to locality of reference and cache coherency you might have two completely different actual runtimes, especially depending on the actual size of the array foo. This doesn't even begin to touch the actual performance characteristics of how the algorithm behaves if it's part of a piece of software that has some concurrency built in.

Not to be a negative nelly but big-O is a tool with a narrow scope. It is of great use if you are deep inside algorithmic analysis or if you are trying to prove something about an algorithm, but if you are doing commercial software development the proof is in the pudding, and you are going to want to have actual performance numbers to make intelligent decisions.

Cheers!

link|flag
But as your n doubles, the time that you spend thrashing the cache (basically) doubles. Your complexity doesn't change, but the constant does. This doesn't say that Big-O is useless. – Calyth Jan 26 at 19:10
@Calyth. No, it doesn't say big-o is useless. That's why earino didn't say big-o is useless, instead that it is of reasonable utility. – MarkJ Sep 22 at 16:49
vote up 5 vote down

A short answer is that it's impossible because constants matter.

For instance, I might write a function that runs in O((n^3/k) + n^2). This simplifies to O(n^3) because as n approaches infinity, the n^3 term will dominate the function, irrespective of the constant k.

However, if k is very large in the above example function, the function will appear to run in almost exactly n^2 until some crossover point, at which the n^3 term will begin to dominate. Because the constant k will be unknown to any profiling tool, it will be impossible to know just how large a dataset to test the target function with. If k can be arbitrarily large, you cannot craft test data to determine the big-oh running time.

link|flag
Excellent point, though if the number of steps is known it's possible to use curve fitting to get an approximate answer. – Joey Robert Jul 14 at 16:10
vote up 4 vote down

I am surprised to see so many attempts to claim that one can "measure" complexity by a stopwatch. Several people have given the right answer, but I think that there is still room to drive the essential point home.

  1. Algorithm complexity is not a "programming" question; it is a "computer science" question. Answering the question requires analyzing the code from the perspective of a mathematician, such that computing the Big-O complexity is practically a form of mathematical proof. It requires a very strong understanding of the fundamental computer operations, algebra, perhaps calculus (limits), and logic. No amount of "testing" can be substituted for that process.

  2. The Halting Problem applies, so the complexity of an algorithm is fundamentally undecidable by a machine.

  3. The limits of automated tools applies, so it might be possible to write a program to help, but it would only be able to help about as much as a calculator helps with one's physics homework, or as much as a refactoring browser helps with reorganizing a code base.

  4. For anyone seriously considering writing such a tool, I suggest the following exercise. Pick a reasonably simple algorithm, such as your favorite sort, as your subject algorithm. Get a solid reference (book, web-based tutorial) to lead you through the process of calculating the algorithm complexity and ultimately the "Big-O". Document your steps and results as you go through the process with your subject algorithm. Perform the steps and document your progress for several scenarios, such as best-case, worst-case, and average-case. Once you are done, review your documentation and ask yourself what it would take to write a program (tool) to do it for you. Can it be done? How much would actually be automated, and how much would still be manual?

Best wishes.

link|flag
Good answer. But even if a problem is not decidable, there is no stopping us trying to solve it for special cases, especially of practical interest. – stefan.ciobaca Jan 29 at 12:14
Yup, programming and programmers thrive on special cases, where even some of the hardest problems become tractable. – Rob Williams Jan 29 at 19:00
vote up 3 vote down

This could work for simple algorithms, but what about O(n^2 lg n), or O(n lg^2 n)?

You could get fooled visually very easily.

And if its a really bad algorithm, maybe it wouldn't return even on n=10.

link|flag
An algorithm can be classified as bad by being a combination of incorrect, incomprehensible, or inefficient. If the latter, n=10 is a linear-timed algorithm (i.e, O(k), very desirable), meaning the code queried would have to contain no loops ... – rlb.usa Jan 26 at 19:53
vote up 2 vote down

I think it's pretty much impossible to do this automatically. Remember that O(g(n)) is the worst-case upper bound and many functions perform better than that for a lot of data sets. You'd have to find the worst-case data set for each one in order to compare them. That's a difficult task on its own for many algorithms.

link|flag
vote up 2 vote down

Jeffrey L Whitledge is correct. A simple reduction from the halting problem proves that this is undecidable...

ALSO, if I could write this program, I'd use it to solve P vs NP, and have $1million... B-)

link|flag
vote up 1 vote down

Well, since you can't prove whether or not a function even halts, I think you're asking a little much.

Otherwise @Godeke has it.

link|flag
vote up 1 vote down

A lot of people have commented that this is an inherently unsolvable problem in theory. Fair enough, but beyond that, even solving it for any but the most trivial cases would seem to be incredibly difficult.

Say you have a program that has a set of nested loops, each based on the number of items in an array. O(n^2). But what if the inner loop is only run in a very specific set of circumstances? Say, on average, it's run in aprox log(n) cases. Suddenly our "obviously" O(n^2) algorithm is really O(n log n). Writing a program that could determine if the inner loop would be run, and how often, is potentially more difficult than the original problem.

Remember O(N) isn't god; high constants can and will change the playing field. Quicksort algorithms are O(n log n) of course, but when the recursion gets small enough, say down to 20 items or so, many implementations of quicksort will change tactics to a separate algorithm as it's actually quicker to do a different type of sort, say insertion sort with worse O(N), but much smaller constant.

So, understand your data, make educated guesses, and test.

link|flag
vote up 1 vote down

You must also take care when running such benchmarks. Some algorithms will have a behavior heavily dependent on the input type.

Take Quicksort for example. It is a worst-case O(n²), but usually O(nlogn). For two inputs of the same size.

The traveling salesman is (I think, not sure) O(n²) (EDIT: the correct value is 0(n!) for the brute force algotithm) , but most algorithms get rather good approximated solutions much faster.

This means that the the benchmarking structure has to most of the time be adapted on an ad hoc basis. Imagine writing something generic for the two examples mentioned. It would be very complex, probably unusable, and likely will be giving incorrect results anyway.

link|flag
The TSP is NP-Complete, just FYI. – Andrew Coleson Jan 26 at 18:25
A nieve traveling salesman algorithm is O(n!), which is hyper-exponential, but I think algorithms are possible that are only exponential O(2^n). There is no known polynomial O(n^2) solution. – Jeffrey L Whitledge Jan 26 at 18:28
indeed. My mistake. – nickolai Jan 26 at 19:17
Actually, for what it's worth, O(n!) is actually exponential O(n!) ~=~ O((n/e)^n) < n^n = 2^(nlogn) < 2^(n^2), witch is clearly exponential, not hyper-exponential. As a matter of fact, any NP problem has an EXPTIME algorithm. – stefan.ciobaca Jan 29 at 12:07
There is an O(n^3*2^n) dynamic programming algorithm, where you fill in a matrix M[1 <= i <= n][1 <= j <= n][c_1 = f/t, ..., c_n = f/t] = true iff there is a road from i to j using exactly the nodes k for which c_k = true. – stefan.ciobaca Jan 29 at 12:12
vote up 0 vote down

I guess this isn't possible in a fully automatic way since the type and structure of the input differs a lot between functions.

link|flag
vote up 0 vote down

Proof that this is undecidable:

Suppose that we had some algorithm HALTS_IN_FN(Program, function) which determined whether a program halted in O(f(n)) for all n, for some function f.

Let P be the following program:

if(HALTS_IN_FN(P,f(n))) { while(1); } halt;

Since the function and the program are fixed, HALTS_IN_FN on this input is constant time. If HALTS_IN_FN returns true, the program runs forever and of course does not halt in O(f(n)) for any f(n). If HALTS_IN_FN returns false, the program halts in O(1) time.

Thus, we have a paradox, a contradiction, and so the program is undecidable.

link|flag
vote up 0 vote down

I don't know what's your objective in doing this, but we had a similar problem in a course I was teaching. The students were required to implement something that works at a certain complexity.

In order not to go over their solution manually, and read their code, we used the method @Godeke suggested. The objective was to find students who used linked list instead of a balansed search tree, or students who implemented bubble sort instead of heap sort (i.e. implementations that do not work in the required complexity - but without actually reading their code).

Surprisingly, the results did not reveal students who cheated. That might be because our students are honest and want to learn (or just knew that we'll check this ;-) ). It is possible to miss cheating students if the inputs are small, or if the input itself is ordered or such. It is also possible to be wrong about students who did not cheat, but have large constant values.

But in spite of the possible errors, it is well worth it, since it saves a lot of checking time.

link|flag
vote up -1 vote down

If you have lots of homogenious computational resources, I'd time them against several samples and do linear regression, then simply take the highest term.

link|flag
vote up -2 vote down

It's easy to get an indication (e.g. "is the function linear? sub-linear? polynomial? exponential")

It's hard to find the exact complexity.

For example, here's a Python solution: you supply the function, and a function that creates parameters of size N for it. You get back a list of (n,time) values to plot, or to perform regression analysis. It times it once for speed, to get a really good indication it would have to time it many times to minimize interference from environmental factors (e.g. with the timeit module).

import time
def measure_run_time(func, args):
  start = time.time()
  func(*args)
  return time.time() - start

def plot_times(func, generate_args, plot_sequence):
  return [
    (n, measure_run_time(func, generate_args(n+1)))
    for n in plot_sequence
  ]

And to use it to time bubble sort:

def bubble_sort(l):
  for i in xrange(len(l)-1):
    for j in xrange(len(l)-1-i):
      if l[i+1] < l[i]:
        l[i],l[i+1] = l[i+1],l[i]

import random
def gen_args_for_sort(list_length):
  result = range(list_length) # list of 0..N-1
  random.shuffle(result) # randomize order
  # should return a tuple of arguments
  return (result,)

# timing for N = 1000, 2000, ..., 5000
times = plot_times(bubble_sort, gen_args_for_sort, xrange(1000,6000,1000))

import pprint
pprint.pprint(times)

This printed on my machine:

[(1000, 0.078000068664550781),
 (2000, 0.34400010108947754),
 (3000, 0.7649998664855957),
 (4000, 1.3440001010894775),
 (5000, 2.1410000324249268)]
link|flag
this doesn't work in the general case. See my answer for why. (I didn't downvote) – Triptych Jan 26 at 18:58
What doesn't work, plotting the actual run time and trying to see a rough pattern with your eyes? :) Notice that I didn't claim regression analysis to be easy or even any good, but looking at a plot is very good at getting a gut feeling. – orip Jan 26 at 19:00
looking at a plot doesn't work, because you don't know, and can't know, how much of the plot to look at. – Triptych Jan 26 at 19:40

Your Answer

Get an OpenID
or

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