vote up 0 vote down star

Duplicate of this question.

Im not understnd the meaning of big o if there is someone know it please tell me

flag

closed as exact duplicate by Bill the Lizard Dec 16 '08 at 16:40

1 Answer

vote up 0 vote down

It's used to describe how quickly some function (such as the runtime of an algorithm) becomes large with respect to the size of the input. For example, sorting is considered an O(N log N) problem because if you're sorting N numbers, it takes about A*N*log(N) seconds to sort those numbers, where A is some constant number that depends on the actual implementation, hardware, etc. The exact value of A is not important - what is important is that if the size of the input doubles (i.e. if you want to sort twice as many numbers), then it takes slightly more than twice as much time to sort them, since A*(2N)*log(2N) = 2*(A*N*log(N)) + (a little bit more).

Wikipedia will give a better, more thorough answer than anyone on SO.

link|flag

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