What is a plain English explanation of Big O? With as little formal definition as possible and simple mathematics.
|
|
Quick note, this is almost certainly confusing Big O notation (which is an upper bound) with Theta notation (which is a two-side bound). In my experience this is actually typical of discussions in non-academic settings. Apologies for any confusion caused. The simplest definition I can give for Big-O notation is this: Big-O notation is a relative representation of the complexity of an algorithm. There are some important and deliberately chosen words in that sentence:
Come back and reread the above when you've read the rest. The best example of Big-O I can think of is doing arithmetic. Take two numbers (123456 and 789012). The basic arithmetic operations we learnt in school were:
Each of these is an operation or a problem. A method of solving these is called an algorithm. Addition is the simplest. You line the numbers up (to the right) and add the digits in a column writing the last number of that addition in the result. The 'tens' part of that number is carried over to the next column. Let's assume that the addition of these numbers is the most expensive operation in this algorithm. It stands to reason that to add these two numbers together we have to add together 6 digits (and possibly carry a 7th). If we add two 100 digit numbers together we have to do 100 additions. If we add two 10,000 digit numbers we have to do 10,000 additions. See the pattern? The complexity (being the number of operations) is directly proportional to the number of digits n in the larger number. We call this O(n) or linear complexity. Subtraction is similar (except you may need to borrow instead of carry). Multiplication is different. You line the numbers up, take the first digit in the bottom number and multiply it in turn against each digit in the top number and so on through each digit. So to multiply our two 6 digit numbers we must do 36 multiplications. We may need to do as many as 10 or 11 column adds to get the end result too. If we have two 100-digit numbers we need to do 10,000 multiplications and 200 adds. For two one million digit numbers we need to do one trillion (1012) multiplications and two million adds. As the algorithm scales with n-squared, this is O(n2) or quadratic complexity. This is a good time to introduce another important concept: We only care about the most significant portion of complexity. The astute may have realized that we could express the number of operations as: n2 + 2n. But as you saw from our example with two numbers of a million digits apiece, the second term (2n) becomes insignificant (accounting for 0.0002% of the total operations by that stage). The Telephone Book The next best example I can think of is the telephone book, normally called the White Pages or similar but it'll vary from country to country. But I'm talking about the one that lists people by surname and then initials or first name, possibly address and then telephone numbers. Now if you were instructing a computer to look up the phone number for "John Smith" in a telephone book that contains 1,000,000 names, what would you do? Ignoring the fact that you could guess how far in the S's started (let's assume you can't), what would you do? A typical implementation might be to open up to the middle, take the 500,000th and compare it to "Smith". If it happens to be "Smith, John", we just got real lucky. Far more likely is that "John Smith" will be before or after that name. If it's after we then divide the last half of the phone book in half and repeat. If it's before then we divide the first half of the phone book in half and repeat. And so on. This is called a binary search and is used every day in programming whether you realize it or not. So if you want to find a name in a phone book of a million names you can actually find any name by doing this at most 20 times. In comparing search algorithms we decide that this comparison is our 'n'. For a phone book of 3 names it takes 2 comparisons (at most). That is staggeringly good isn't it? In Big-O terms this is O(log n) or logarithmic complexity. Now the logarithm in question could be ln (base e), log10, log2 or some other base. It doesn't matter it's still O(log n) just like O(2n2) and O(100n2) are still both O(n2). It's worthwhile at this point to explain that Big O can be used to determine three cases with an algorithm:
Normally we don't care about the best case. We're interested in the expected and worst case. Sometimes one or the other of these will be more important. Back to the telephone book. What if you have a phone number and want to find a name? The police have a reverse phone book but such lookups are denied to the general public. Or are they? Technically you can reverse lookup a number in an ordinary phone book. How? You start at the first name and compare the number. If it's a match, great, if not, you move on to the next. You have to do it this way because the phone book is unordered (by phone number anyway). So to find a name:
The Travelling Salesman This is quite a famous problem in computer science and deserves a mention. In this problem you have N towns. Each of those towns is linked to 1 or more other towns by a road of a certain distance. The Travelling Salesman problem is to find the shortest tour that visits every town. Sounds simple? Think again. If you have 3 towns A, B and C with roads between all pairs then you could go: A -> B -> C Well actually there's less than that because some of these are equivalent (A -> B -> C and C -> B -> A are equivalent, for example, because they use the same roads, just in reverse). In actuality there are 3 possibilities. Take this to 4 towns and you have (iirc) 12 possibilities. With 5 it's 60. 6 becomes 360. This is a function of a mathematical operation called a factorial. Basically:
So the Big-O of the Travelling Salesman problem is O(n!) or factorial or combinatorial complexity. By the time you get to 200 towns there isn't enough time left in the universe to solve the problem with traditional computers. Something to think about. Polynomial Time Another point I wanted to make quick mention of is that any algorithm that has a complexity of O(na) is said to have polynomial complexity or is solvable in polynomial time. Traditional computers can solve polynomial-time problems. Certain things are used in the world because of this. Public Key Cryptography is a prime example. It is computationally hard to find two prime factors of a very large number. If it wasn't, we couldn't use the public key systems we use. Anyway, that's it for my (hopefully plain English) explanation of Big O (revised). |
|||||||||||||||||||||
|
|
It shows how an algorithm scales. O(n^2):
Notice that the number of items increases by a factor of 10, but the time increases by a factor of 10^2. Basically, n=10 and so O(n^2) gives us the scaling factor n^2 which is 10^2. O(n):
This time the number of items increases by a factor of 10, and so does the time. n=10 and so O(n)'s scaling factor is 10. O(1):
The number of items is still increasing by a factor of 10, but the scaling factor of O(1) is always 1. That's the gist of it. They reduce the maths down so it might not be exactly n^2 or whatever they say it is, but that'll be the dominating factor in the scaling. |
|||||||||||||||||
|
|
EDIT: Quick note, this is almost certainly confusing Big O notation (which is an upper bound) with Theta notation (which is both an upper and lower bound). In my experience this is actually typical of discussions in non-academic settings. Apologies for any confusion caused. In one sentence: As the size of your job goes up, how much longer does it take to complete it? Obviously that's only using "size" as the input and "time taken" as the output — the same idea applies if you want to talk about memory usage etc. Here's an example where we have N T-shirts which we want to dry. We'll assume it's incredibly quick to get them in the drying position (i.e. the human interaction is negligible). That's not the case in real life, of course...
One important aspect of "big O" notation is that it doesn't say which algorithm will be faster for a given size. Take a hashtable (string key, integer value) vs an array of pairs (string, integer). Is it faster to find a key in the hashtable or an element in the array, based on a string? (i.e. for the array, "find the first element where the string part matches the given key.") Hashtables are generally amortised (~= "on average") O(1) — once they're set up, it should take about the same time to find an entry in a 100 entry table as in a 1,000,000 entry table. Finding an element in an array (based on content rather than index) is linear, i.e. O(N) — on average, you're going to have to look at half the entries. Does this make a hashtable faster than an array for lookups? Not necessarily. If you've got a very small collection of entries, an array may well be faster — you may be able to check all the strings in the time that it takes to just calculate the hashcode of the one you're looking at. As the data set grows larger, however, the hashtable will eventually beat the array. |
|||||||||||||||
|
|
Big-O notation (also called "asymptotic growth" notation) is what functions "look like" when you ignore constant factors and stuff near the origin. We use it to talk about how thing scale. Basics for "sufficiently" large inputs...
big-O notation doesn't care about constant factors: the function Why would you want to ignore the smaller parts of the equation? Because they become completely dwarfed by the big parts of the equation as you consider larger and larger scales; their contribution becomes dwarfed and irrelevant. (See example section.) Put another way, it's all about the ratio. If you divide the actual time it takes by the
... this means that for "large enough" problem sizes N (if we ignore stuff near the origin), there exists some constant (e.g. 2.5, completely made up) such that:
There are many choices of constant; often the "best" choice is known as the "constant factor" of the algorithm... but we often ignore it like we ignore non-largest terms (see Constant Factors section for why they don't usually matter). You can also think of the above equation as a bound, saying "In the worst-case scenario, the time it takes will never be worse than roughly In general, Intuition This lets us make statements like...
(with credit to http://stackoverflow.com/a/487292/711085 ) Applications As a purely mathematical construct, big-O notation is not limited to talking about processing time and memory. You can use it to discuss the asymptotics of anything where scaling is meaningful, such as:
Example For the handshake example,
If you wanted to prove this to yourself, you could perform some simple algebra on the ratio to split it up into multiple terms (
Constant factors Usually we don't care what the specific constant factors are, because they don't affect the way the function grows. For example, two algorithm may both take Some asymptotically superior algorithms (e.g. a non-comparison Why O(N) is sometimes the best you can do, i.e. why we need datastructures
The same can be said for the very act of writing. For example, all algorithms which print out all permutations of a number N are This motivates the use of data structures: a data structure requires reading the data only once (usually For example, say you had the latitude and longitude coordinates of millions of roads segments, and wanted to find all street intersections.
The moral of the story: a data structure lets us speed up operations. Even more advanced data structures can let you combine, delay, or even ignore operations in incredibly clever ways, like leaving the equivalent of "to-do" notes at junctions in a tree. Amortized / average-case complexity There is also the concept of "amortized" or "average case". This is no more than using big-O notation for the expected value of a function, rather than the function itself. For example, some data structures may have a worse-case complexity of Multidimensional big-O Most of the time, people don't realize that there's more than one variable at work. For example, in a string-search algorithm, your algorithm may take time The whole story Keep in mind that big-O is not the whole story. You can drastically speed up some algorithms by using caching, making them cache-oblivious, avoiding bottlenecks by working with RAM instead of disk, using parallelization, or doing work ahead of time -- these techniques are often independent of the order-of-growth "big-O" notation, though you will often see the number of cores in the big-O notation of parallel algorithms. Also keep in mind that due to hidden constraints of your program, you might not really care about asymptotic behavior. You may be working with a bounded number of values, for example:
In practice, even among algorithms which have the same or similar asymptotic performance, their relative merit may actually be driven by other things, such as: other performance factors (quicksort and mergesort are both Many things can implicitly contribute to the running time's constant factor, such as whether you run your algorithm on a 500MHz computer vs 2GHz computer, whether your programming language is interpreted or using a JIT compiler, whether you are doing a constant amount of extra work in a critical section of code, etc. The effect may be small (e.g. 0.9x speed) or large (e.g. 0.01x speed) compared to a different implementation and/or environment. Do you switch languages to eek out that little extra constant factor of work? That literally depends on a hundred other reasons (necessity, skills, coworkers, programmer productivity, the monetary value of your time, familiarity, workarounds, why not assembly or GPU, etc...), which may be more important than performance. The above issues, like programming language, are almost never considered as part of the constant factor (nor should they be); yet one should be aware of them, because sometimes (though rarely) they may not be constant. For example in cpython, the native priority queue implementation is asymptotically non-optimal ( Math addenda For completeness, the precise definition of big-O notation is as follows: People will often use |
|||||||||||
|
|
Big O describes an upper limit on the growth behaviour of a function, for example the runtime of a program, when inputs become large. Examples:
The input size is usually the space in bits needed to represent the input. |
|||||||||||||||
|
|
Big O notation is most commonly used by programmers as an approximate measure of how long a computation (algorithm) will take to complete expressed as a function of the size of the input set. Big O is useful to compare how well two algorithms will scale up as the number of inputs is increased. More precisely Big O notation is used to express the asymptotic behavior of a function. That means how the function behaves as it approaches infinity. In many cases the "O" of an algorithm will fall into one of the following cases:
Big O ignores factors that do not contribute in a meaningful way to the growth curve of a function as the input size increases towards infinity. This means that constants that are added to or multiplied by the function are simply ignored. |
||||
|
|
|
Big O is just a way to "Express" yourself in a common way, "How much time / space does it take to run my code?". You may often see O(n), O(n^2), O(nlogn) and so forth, all these are just ways to show; How does an algorithm change? O(n) means Big O is n, and now you might think, "What is n!?" Well "n" is the amount of elements. Imaging you want to search for an Item in an Array. You would have to look on Each element and as "Are you the correct element/item?" in the worst case, the item is at the last index, which means that it took as much time as there are items in the list, so to be generic, we say "oh hey, n is a fair given amount of values!". So then you might understand what "n^2" means, but to be even more specific, play with the thought you have a simple, the simpliest of the sorting algorithms; bubblesort. This algorithm needs to look through the whole list, for each item. My list
The flow here would be:
This is O n^2 because, you need to look at all items in the list there are "n" items. For each item, you look at all items once more, for comparing, this is also "n", so for every item, you look "n" times meaning n*n = n^2 I hope this is as simple as you want it. But remember, Big O is just a way to experss yourself in the manner of time and space. |
|||
|
|
|
Big O describes the fundamental scaling nature of an algorithm. There is a lot of information that Big O does not tell you about a given algorithm. It cuts to the bone and gives only information about the scaling nature of an algorithm, specifically how the resource use (think time or memory) of an algorithm scales in response to the "input size". Consider the difference between a steam engine and a rocket. They are not merely different varieties of the same thing (as, say, a Prius engine vs. a Lamborghini engine) but they are dramatically different kinds of propulsion systems, at their core. A steam engine may be faster than a toy rocket, but no steam piston engine will be able to achieve the speeds of an orbital launch vehicle. This is because these systems have different scaling characteristics with regards to the relation of fuel required ("resource usage") to reach a given speed ("input size"). Why is this so important? Because software deals with problems that may differ in size by factors up to a trillion. Consider that for a moment. The ratio between the speed necessary to travel to the Moon and human walking speed is less than 10,000:1, and that is absolutely tiny compared to the range in input sizes software may face. And because software may face an astronomical range in input sizes there is the potential for the Big O complexity of an algorithm, it's fundamental scaling nature, to trump any implementation details. Consider the canonical sorting example. Bubble-sort is O(n^2) while merge-sort is O(n log n). Let's say you have two sorting applications, application A which uses bubble-sort and application B which uses merge-sort, and let's say that for input sizes of around 30 elements application A is 1,000x faster than application B at sorting. If you never have to sort much more than 30 elements then it's obvious that you should prefer application A, as it is much faster at these input sizes. However, if you find that you may have to sort ten million items then what you'd expect is that application B actually ends up being thousands of times faster than application A in this case, entirely due to the way each algorithm scales. |
|||
|
|
|
Big O notation is a way of describing the upper bound of an algorithm in terms of space or running time. The n is the number of elements in the the problem (i.e size of an array, number of nodes in a tree, etc.) We are interested in describing the running time as n gets big. When we say some algorithm is O(f(n)) we are saying that the running time (or space required) by that algorithm is always lower than some constant times f(n). To say that binary search has a running time of O(logn) is to say that there exists some constant c which you can multiply log(n) by that will always be larger than the running time of binary search. In this case you will always have some constant factor of log(n) comparisons. In other words where g(n) is the running time of your algorithm, we say that g(n) = O(f(n)) when g(n) <= c*f(n) when n > k, where c and k are some constants. |
|||
|
|
Ok, my 2cents. Big-O, is rate of increase of resource consumed by program, w.r.t. problem-instance-size Resource : Could be total-CPU time, could be maximum RAM space. By default refers to CPU time. Say the problem is "Find the sum",
problem-instance= {5,10,15} ==> problem-instance-size = 3, iterations-in-loop= 3 problem-instance= {5,10,15,20,25} ==> problem-instance-size = 5 iterations-in-loop = 5 For input of size "n" the program is growing at speed of "n" iterations in array. Hence Big-O is N expressed as O(n) Say the problem is "Find the Combination",
problem-instance= {5,10,15} ==> problem-instance-size = 3, total-iterations = 3*3 = 9 problem-instance= {5,10,15,20,25} ==> problem-instance-size = 5, total-iterations= 5*5 =25 For input of size "n" the program is growing at speed of "n*n" iterations in array. Hence Big-O is N^2 expressed as O(n^2) |
||||
|
|
|
Big O is a measure of how much time/space an algorithm uses relative to the size of its input. If an algorithm is O(n) then the time/space will increase at the same rate as its input. If an algorithm is O(n^2) then the time/space increase at the rate of its input squared. and so on. |
|||||||||||||
|
|
Not sure I'm further contributing to the subject but still thought I'd share: I once found this blog post to have some quite helpful (though very basic) explanations & examples on Big O: Via examples, this helped get the bare basics into my tortoiseshell-like skull, so I think it's a pretty descent 10-minute read to get you headed in the right direction. |
||||
|
|
A Plain English Explaination of the Need for Big-O Notation: When we program, we are trying to solve a problem. What we code is called an algorithm. Big O notation allows us to compare the worse case performance of our algorithms in a standardized way. Hardware specs vary over time and improvements in hardware can reduce the time it takes an algorithms to run. But replacing the hardware does not mean our algorithm is any better or improved over time, as our algorithm is still the same. So in order to allow us to compare different algorithms, to determine if one is better or not, we use Big O notation. |
|||
|
|
|
Big O f(x) = O(g(x)) when x goes to a (for example, a = +∞) means that there is a function k such that:
In other words, in plain English: f(x) = O(g(x)), x → a, means that in a neighborhood of a, f decomposes into the product of g and some bounded function. Small o By the way, here is for comparison the definition of small o. f(x) = o(g(x)) when x goes to a means that there is a function k such that:
Examples
Attention! The notation with the equal sign "=" uses a "fake equality": it is true that o(g(x)) = O(g(x)), but false that O(g(x)) = o(g(x)). Similarly, it is ok to write "ln(x) = o(x) when x → +∞", but the formula "o(x) = ln(x)" would make no sense. |
||||
|
|
|
Algorithm example (Java):
Algorithm description:
Big-O notation represent the upper-bound on the Complexity (Time, Space, ..) To find The Big-O on Time Complexity:
There's also Big-Omega, which represent complexity of the Best-Case:
|
|||
|
|
|
If you are thinking in terms of oracles (subroutines), to have the same big-O means that if you have subroutine X and a way to transform your problem into X with constant overhead on the order of the resources it takes X to run, then you only have a constant factor slowdown/memoryIncrease by using subroutine X. Here are the classic major subroutines: Radix Based Sorts O(n) Comparison Sorts O(nlogn) Max Flow O(VE log(V^2/E)) Matrix Multiplication O(n^2.xxx), O(n^3) naive SAT O( something exponential unless P==NP which is unlikely) |
|||||||||
|
protected by Community♦ May 27 '11 at 22:05
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

