Or anything else which is less than O(1)?
|
|
This question isn't as stupid as it might seem. At least theoretically, something such as O(1/n) is completely sensible when we take the mathematical definition of the Big O notation:
Now you can easily substitute g(x) for 1/x … it's obvious that the above definition still holds for some f. For the purpose of estimating asymptotic run-time growth, this is less viable … a meaningful algorithm cannot get faster as the input grows. Sure, you can construct an arbitrary algorithm to fulfill this, e.g. the following one:
Clearly, this function spends less time as the input size grows … at least until some limit, enforced by the hardware (precision of the numbers, minimum of time that But there are in fact real-world algorithms where the runtime can decrease (at least partially) when the input size increases. Note that these algorithms will not exhibit runtime behaviour below O(1), though. Still, they are interesting. For example, take the very simple text search algorithm by Horspool. Here, the expected runtime will decrease as the length of the search pattern increases (but increasing length of the haystack will once again increase runtime). |
||||||||||||||||||||
|
|
|
Here's a simple O(1/n) algorithm. And it even does something interesting!
O(1/n) is possible as it describes how the output of a function changes given increasing size of input. If we are using the function 1/n to describe the number of instructions a function executes then there is no requirement that the function take zero instructions for any input size. Rather, it is that for every input size, n above some threshold, the number of instructions required is bounded above by a positive constant multiplied by 1/n. As there is no actual number for which 1/n is 0, and the constant is positive, then there is no reason why the function would constrained to take 0 or fewer instructions. |
|||
|
|
|
|
|
|||
|
|
|
|
Yes. There is precisely one algorithm with runtime O(1/n), the "empty" algorithm. For an algorithm to be O(1/n) means that it executes asymptotically in less steps than the algorithm consisting of a single instruction. If it executes in less steps than one step for all n > n0, it must consist of precisely no instruction at all for those n. Since checking 'if n > n0' costs at least 1 instruction, it must consist of no instruction for all n. Summing up: The only algorithm which is O(1/n) is the empty algorithm, consisting of no instruction. |
||
|
|
|
|
I see an algorithm that is O(1/n) admittedly to an upper bound: You have a large series of inputs which are changing due to something external to the routine (maybe they reflect hardware or it could even be some other core in the processor doing it.) and you must select a random but valid one. Now, if it wasn't changing you would simply make a list of items, pick one randomly and get O(1) time. However, the dynamic nature of the data precludes making a list, you simply have to probe randomly and test the validity of the probe. (And note that inherently there is no guarantee the answer is still valid when it's returned. This still could have uses--say, the AI for a unit in a game. It could shoot at a target that dropped out of sight while it was pulling the trigger.) This has a worst-case performance of infinity but an average case performance that goes down as the data space fills up. |
||
|
|
|
|
Nothing is smaller than O(1) Big-O notation implies the largest order of complexity for an algorithm If an algorithm has a runtime of n^3 + n^2 + n + 5 then it is O(n^3) The lower powers dont matter here at all because as n -> Inf, n^2 will be irrelevant compared to n^3 Likewise as n -> Inf, O(1/n) will be irrelevant compared to O(1) hence 3 + O(1/n) will be the same as O(1) thus making O(1) the smallest possible computational complexity |
||
|
|
|
|
Yes. The length of a post & its comments, vs. the amount of time that I will spend on it. Done. |
||
|
|
|
|
Your mom. :P Edit: There are sub-linear algorithms. In fact, the Bayer-Moore search algorithm is a very popular one. |
||||||||
|
|
|
I often use O(1/n) to describe probabilities that get smaller as the inputs get larger -- for example, the probability that a fair coin comes up tails on log2(n) flips is O(1/n). |
||||||||||||||||||||
|
|
|
Big-O notation represents the worst case scenario for an algorithm which is not the same thing as its typical run time. It is simple to prove that an O(1/n) algorithm is an O(1) algorithm . By definition, |
||||||||||||
|
|
|
I think the source of the debate is possibly the misconception of Big-Oh and Big-theta notations. In some answers and comments it was mentioned that a As a result, technically, this question is obvious: If anything is less than O(1) (or O(whatever), for that matter), it would also be O(1) (O( In usual speech, we mostly use Big-Oh to mean tight bounds (instead of Big-theta, which is the correct notation for it). Basically, the question should not include the "or anything less than O(1)" part. Konrad's answer is completely right. These notations are theoretical concepts. They don't take one important thing into account that currently limits us in practice: In practice, our machines are finite and this is where it seems like a paradox. In a finite machine, our " To those who believe that there are no The moral of this story: O-notation is about algorithms, not practical implementations of them. In practice, a digital computer cannot emulate a Turing machine (because a Turing machine doesn't have finite amount of memory; this might be a contradiction to what some people might have heard). A digital computer is a deterministic finite automaton (DFA) that can simulate a Turing machine with finite memory. Don't confuse theory and practice! |
||||||||||||||||||
|
|
|
No, this is not possible: As n tends to infinity in 1/n we eventually achieve 1/(inf), which is effectively 0. Thus, the big-oh class of the problem would be O(0) with a massive n, but closer to constant time with a low n. This is not sensible, as the only thing that can be done in faster than constant time is:
And even this is arguable! As soon as you execute a command, you're in at least O(1), so no, we cannot have a big-oh class of O(1/n)! |
||
|
|
|
|
O(1) simply means "constant time". When you add an early exit to a loop[1] you're (in big-O notation) turning an O(1) algorithm into O(n), but making it faster. The trick is in general the constant time algorithm is the best, and linear is better then exponential, but for small amounts of n, the exponential algorith might actually be faster. 1: Assuming a static list length for this example |
||
|
|
|
|
Example: You are in a labyrinth. What's the way out? The answer is O(1) if you put the turns taken towards where you are on a LIFO but needs sorting, reverse and slower, if put on a FIFO instead. I suppose any solution can end sorted before the query given that the data model is flexible between at least LIFO, FIFO or priority. |
||
|
|
|
I don't understand the mathematics but the concept appears to be looking for a function that takes less time as you add more inputs? In that case what about:
This function is quicker when the optional second argument is added because otherwise it has to be assigned. I realise this isn't an equation but then the wikipeadia pages says big-O is often applied to computing systems as well. |
||
|
|
|
|
If the answer is the same regardless of the input data then you have an O(0) algorithm. or in other words - the answer is known before the input data is submitted - the function could be optimised out - so O(0) |
||||||
|
|
|
What about not running the function at all (NOOP)? or using a fixed value. Does that count? |
||||||||||||
|
|
|
Which problems get easier as population grows? One answer is a thing like bittorrent where download speed is an inverse function of number of nodes. Contrary to a car, which slows down the more you load it, a file-sharing network like bittorrent speeds the more nodes connected. |
||
|
|
|
sharptooth is correct, O(1) is the best possible performance. However, it does not imply a fast solution, just a fixed time solution. An interesting variant, and perhaps what is really being suggested, is which problems get easier as the population grows. I can thing of 1, albeit contrived and tongue-in-cheek answer: Do any two people in a set have the same birthday? When n exceeds 365, return true. Although for less than 365, this is O(n ln n). Perhaps not a great answer since the problem doesn't slowly get easier but just becomes O(1) for n > 365. |
||||||||
|
|
|
You can't go below O(1), however O(k) where k is less than N is possible. We called them sublinear time algorithms. In some problems, Sublinear time algorithm can only gives approximate solutions to a particular problem. However, sometimes, an approximate solutions is just fine, probably because the dataset is too large, or that it's way too computationally expensive to compute all. |
||||||||
|
|
|
from my previous learning of big O notation, even if you need 1 step (such as checking a variable, doing an assignment), that is O(1). note that O(1) is the same as O(6), because the "constant" doesn't matter. that's why we say O(n) is the same as O(3n). So if you need even 1 step, that's O(1)... and since your program at least needs 1 step, the minimum an algorithm can go is O(1). Unless if we don't do it, then it is O(0), i think? If we do anything at all, then it is O(1), and that's the minimum it can go. (if we choose not to do it, then it may become a Zen or Tao question... in the realm of programming, O(1) is still the minimum). or how about this: programmer: boss, i found a way to do it in O(1) time! |
|||
|
|
|
|
What about this:
as the size of the list grows, the expected runtime of the program decreases. |
||||||||||
|
|
|
O(1/n) is not less then O(1), it basically means that the more data you have, the faster algorithm goes. Say you get an array and always fill it in up to a 10100 elements if it has less then that and do nothing if there's more. This one is not O(1/n) of course but something like O(-n) :) Too bad O-big notation does not allow negative values. |
||||
|
|
|
If solution exists, it can be prepared and accessed in constant time=immediately. For instance using a LIFO data structure if you know the sorting query is for reverse order. Then data is already sorted, given that the appropriate model (LIFO) was chosen. |
||
|
|
|
|
OK, I did a bit of thinking about it, and perhaps there exists an algorithm that could follow this general form: You need to compute the traveling salesman problem for a 1000 node graph, however, you are also given a list of nodes which you cannot visit. As the list of unvisitable nodes grows larger, the problem becomes easier to solve. |
||||||||||
|
|
|
List of functions and their O() orders as presented by Aunt Wiki. |
||
|
|
|
|
That's not possible. The definition of Big-O is the not greater than inequality:
So the B(n) is in fact the maximum value, therefore if it decreases as n increases the estimation will not change. |
||||||||||||||||||||
|
|
|
I believe quantum algorithms can do multiple computations "at once" via superposition... I doubt this is a useful answer. |
||||||||||||||
|
