Possible Duplicate:
are there any O(1/n) algorithms?
Is it ever possible for your code to be Big O less than O(1)?
|
|
Is it ever possible for your code to be Big O less than O(1)?
|
||||||
|
closed as exact duplicate by GMan, RaYell, Matthew Scharley, Lieven, Mark Aug 17 at 8:15 |
|
|
O(1) simply means a constant time operation. That time could be 1 nanosecond or 1 million years, the notation is not a measure of absolute time. Unless of course you are working on the OS for a time machine, than perhaps your DoTimeTravel( ) function would have O(-1) complexity :-) |
|||
|
|
|
|
Not really. As noted in this question, it is technically possible to have an |
||||||
|
|
|
The only thing that would take less than O(1) (constant time) would be an operation that did absolutely nothing, and thus took zero time. But even a NOP usually takes a fixed number of cycles... |
||||||||
|