I was trying one of the online developer certificating website's demo test. I have written it in C# using many interfaces, events etc.

My code passed but it complained that:

Detected time complexity: O((N+M)*K)

What does basically O((N+M)*K) mean?

And if I want to repair this complexity, (it is a code works on arrays) usually where is best to start checking?

Updates: The code works on multi-dimensional array and it has a loop within a loop (walks through rows and then columns at some point)

link|improve this question

68% accept rate
What are N,M and K? And google "Big O notation" – CodeInChaos May 6 '11 at 12:03
1  
It's probably telling you to use a faster algorithm. Perhaps you have nested loops you should get rid of. But your question is slightly underspecified. – CodeInChaos May 6 '11 at 12:04
Seems to me like it found something which it feels is roughly O(n^2), assuming that one of N or M is not constant and that K is not constant and of roughly the same magnitude of N or M. – aroth May 6 '11 at 12:06
feedback

3 Answers

This might help Asymptotic Notation
And if I may ask, which site gave you this?

link|improve this answer
www.codility.com – pencilCake May 6 '11 at 12:18
feedback

It would completely depend on what your code is supposed to do.

Big-Oh tells you what the main factors are that determine how long your algorithm will take.

link|improve this answer
I think it's more accurate to say that it helps you determine what factors influence how well the algorithm scales to larger data-sets. An O(n^2) algorithm will not necessarily take any longer to execute than an O(n) algorithm on a small enough data-set. Only as the amount of data grows does the difference between the two become measurable. – aroth May 6 '11 at 12:10
feedback

This is an example of Big-O notation:

http://en.wikipedia.org/wiki/Big_O_notation

I don't know the specifics of the type that you've got, but what it's telling you is that the method in question but what it's telling you is that the bounds of the method are that it will run many times (n+m)*k.

How it's come to this conclusion is by examining the relationship of the internal loop of your method, to how many times its run in an outer loop.

the fact that it thinks '* k' is a factor means it's warning you that it could take a long time for large arrays.

Can you post the Method itself ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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