vote up 0 vote down star

Possible Duplicate:
are there any O(1/n) algorithms?

Is it ever possible for your code to be Big O less than O(1)?

flag

6  
see: stackoverflow.com/questions/905551/… – Nick D Aug 17 at 6:09
Dang you, Nick, you beat me. :P – GMan Aug 17 at 6:11

closed as exact duplicate by GMan, RaYell, Matthew Scharley, Lieven, Mark Aug 17 at 8:15

3 Answers

vote up 3 vote down check

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 :-)

link|flag
vote up 2 vote down

Not really. O(1) is constant time. Whether you express that as O(1) or O(2) or O(.5) really makes little difference as far as purely big O notation goes.

As noted in this question, it is technically possible to have an O(1/n), but that no real-world useful algorithm would satisfy this (though some do algorithm's do have 1/n as part of their algorithmic complexity).

link|flag
The sql statements like "DROP TABLE" and "DELETE FROM TABLE" Show O(1/N) beheaviour. – James Anderson Aug 17 at 6:21
How do you figure that? n being the number of tables, not the number of records in the table, since the table is the input, and usually all these operations need to do is delete a reference to the table. – Matthew Scharley Aug 17 at 6:26
DELETE FROM TABLE might have O(1/N) characteristics, dependant on implementation, but I would doubt if this would show up unless you were trying to delete over half the table. – Matthew Scharley Aug 17 at 6:31
vote up 0 vote down

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...

link|flag
A fixed number of cycles? How many cycles does it take to read an instruction and do nothing? I wouldn't expect a NOP to take more than 1 cycle... – Matthew Scharley Aug 17 at 6:13
Of course, it depends on architecture. – GMan Aug 17 at 6:14
so that would be O(0) ? – Ray Aug 17 at 6:20
Not really. It's constant, but it always takes time, atleast one cycle, but however long it takes to read the instruction and discard it. – Matthew Scharley Aug 17 at 6:29

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