Tagged Questions
The Big-O notation is used to represent asymptotic upper bounds. It is most commonly used when talking about the time complexity (worst case, average case, etc) of algorithms.
561
votes
14answers
103k views
Plain English explanation of Big O
What is a plain English explanation of Big O? With as little formal definition as possible and simple mathematics.
163
votes
25answers
13k views
Big-O for Eight Year Olds?
I'm asking more about what this means to my code. I understand the concepts mathematically, I just have a hard time wrapping my head around what they mean conceptually. For example, if one were to ...
150
votes
31answers
7k views
Are there any O(1/n) algorithms?
Are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
126
votes
16answers
13k views
What does O(log n) mean exactly?
I am currently learning about Big O Notation running times and amortized times. I understand the notion of O(n) linear time, meaning that the size of the input affects the growth of the algorithm ...
121
votes
22answers
40k views
Big O, how do you calculate/approximate it?
Most people with a degree in CS will certainly know what Big O stands for.
It helps us to measure how (in)efficient an algorithm really is and if you know in what category the problem you are trying ...
115
votes
31answers
6k views
O(nlogn) Algorithm - Find three evenly spaced ones within binary string
I had this question on an Algorithms test yesterday, and I can't figure out the answer. It is driving me absolutely crazy, because it was worth about 40 points. I figure that most of the class ...
74
votes
5answers
9k views
What is the difference between Θ(n) and O(n)?
Sometimes I see Θ(n) with the strange Θ symbol with something in the middle of it, and sometimes just O(n). Is it just laziness of typing because nobody knows how to type this symbol, or does it mean ...
53
votes
6answers
3k views
List of Big-O for PHP functions
After using PHP for a while now, I've noticed that not all PHP built in functions as fast as expected. Consider the below two possible implementations of a function that finds if a number is prime ...
43
votes
8answers
7k views
Is log(n!) = Θ(n·log(n))?
This is a homework question. I'm not expecting an answer, just some guidance, possibly :) I am to show that log(n!) = Θ(n·log(n)).
A hint was given that I should show the upper bound with nn and ...
37
votes
3answers
7k views
Constant Amortized Time
What is meant by "Constant Amortized Time" when talking about time complexity of an algorithm?
34
votes
37answers
7k views
Algorithm to determine if array contains n…n+m?
I saw this question on Reddit, and there were no positive solutions presented, and I thought it would be a perfect question to ask here. This was in a thread about interview questions:
Write a ...
33
votes
13answers
1k views
Is the time complexity of the empty algorithm O(0)?
So given the following program:
Is the time complexity of this program O(0)? In other words, is 0 O(0)?
I thought answering this in a separate question would shed some light on this question.
...
32
votes
9answers
870 views
Empirically estimating big-oh time efficiency
Background
I'd like to estimate the big-oh performance of some methods in a library through benchmarks. I don't need precision -- it suffices to show that something is O(1), O(logn), O(n), O(nlogn), ...
29
votes
10answers
21k views
Computational complexity of Fibonacci Sequence
I understand Big-O notation, but I don't know how to calculate it for many functions. In particular, I've been trying to figure out the computational complexity of the naive version of the Fibonacci ...
27
votes
6answers
817 views
Determining the complexities given codes
Given a snipplet of code, how will you determine the complexities in general. I find myself getting very confused with Big O questions. For example, a very simple question:
for (int i = 0; i < n; ...
26
votes
36answers
3k views
Should we care if a prospective hire understand Big O notation?
A colleague of mine caused a long e-mail conversation by saying:
Of the probably 30+ people I’ve given a phone interview to, not a one (including people with Masters degrees in CS!!) has been able to ...
25
votes
3answers
485 views
Why isn't LinkedList.Clear() O(1)
I was assuming LinkedList.Clear() was O(1) on a project I'm working on, as I used a LinkedList to drain a BlockingQueue in my consumer that needs high throughput, clearing and reusing the LinkedList ...
24
votes
16answers
35k views
How to find the kth largest element in an unsorted array of length n in O(n)?
I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this?
Cheers!
p.s. this is not for ...
23
votes
5answers
1k views
How is the PHP array implemented on the C level?
The PHP array is one of PHP's core features. It is sparse, allows multi-typed keys in the same array, and supports set, dictionary, array, stack/queue and iterative functionality.
But after working ...
22
votes
23answers
3k views
O(log N) == O(1) - Why not?
Whenever I consider algorithms/data structures I tend to replace the log(N) parts by constants. Oh, I know log(N) diverges - but does it matter in real world applications?
log(infinity) < 100 ...
21
votes
13answers
2k views
Example of O(n!)?
What is an example (in code) of a O(n!) function? It should take appropriate number of operations to run in reference to n; that is, I'm asking about time complexity.
20
votes
7answers
8k views
Big-O summary for Java Collections Framework implementations?
I may be teaching a "Java crash-course" soon. While it is probably safe to assume that the audience members will know Big-O notation, it is probably not safe to assume that they will know what the ...
19
votes
13answers
11k views
Is a Java hashmap really O(1)?
I've seen some interesting claims on SO re Java hashmaps and their O(1) lookup time. Can someone explain why this is so? Unless these hashmaps are vastly different from any of the hashing algorithms I ...
19
votes
4answers
3k views
Is list::size() really O(n)?
Recently, I noticed some people mentioning that std::list::size() has a linear complexity.
According to some sources, this is in fact implementation dependent as the standard doesn't say what the ...
18
votes
6answers
3k views
Is Big O(logn) log base e?
For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described by the natural ...
18
votes
6answers
6k views
Big O Notation Homework--Code Fragment Algorithm Analysis?
For homework, I was given the following 8 code fragments to analyze and give a Big-Oh notation for the running time. Can anybody please tell me if I'm on the right track?
//Fragment 1
for(int i = ...
17
votes
10answers
734 views
Efficient algorithm to determine if an alleged binary tree contains a cycle?
One of my favorite interview questions is
In O(n) time and O(1) space, determine whether a linked list contains a cycle.
This can be done using Floyd's cycle-finding algorithm.
My question is ...
17
votes
4answers
789 views
What data structure using O(n) storage with O(log n) query time should I use for Range Minimum Queries?
I'm stumped by the following homework question for an algorithms class:
Suppose that we are given a sequence
of n values x1, x2 ... xn, and seek to
quickly answer repeated queries of the
...
17
votes
17answers
2k views
When does Big-O notation fail?
What are some examples where Big-O notation[1] fails in practice?
That is to say: when will the Big-O running time of algorithms predict algorithm A to be faster than algorithm B, yet in practice ...
17
votes
2answers
7k views
What are the Complexity guarantees of the standard containers?
Apparently ;-) the standard containers provide some form of guarantees.
What type of guarantees and what exactly are the differences between the different types of container?
Working from the SGI ...
16
votes
1answer
490 views
Is this algorithm linear?
Inspired by these two questions: String manipulation: calculate the "similarity of a string with its suffixes" and Program execution varies as the I/P size increases beyond 5 in C, I came up ...
16
votes
9answers
589 views
Does Big O Measure Memory Requirments Or Just Speed?
I often here people talk about Big O which measures algorithms against each other
Does this measure clock cycles or space requirements.
If people want to contrast algorithms based on memory usage ...
16
votes
6answers
2k views
Big O complexity of the basic arithmetic operations
What Big-O complexity have most widespread algorithms for the basic arithmetic operations like multiplication, square root, logarithm, scalar and matrix product?
Do exist some exotic algorithms which ...
16
votes
7answers
1k views
What is the difference between O, Ω, and Θ?
I am learning algorithm analysis. I am having trouble understanding the difference between O, Ω, and Θ.
The way they're defined is as follows:
f(n) = O(g(n)) means c · g(n) is an
upper bound ...
15
votes
21answers
6k views
An O(1) Sort ---
Before you stone me for being a heretic, there is a sort that proclaims to be O(1), called "Bead Sort", however that is pure theory, when actually applied I found that it was actually O(N * M), which ...
14
votes
4answers
555 views
Is it possible that time complexity of any algorithm decrease as the input size increase, any example
I just read in Cormen's algorithm book that big-O and big-omega do not follow the trichotomy property. That means for two functions, f(n) and g(n), it may be the case that neither f(n) = O(g(n)) nor ...
14
votes
4answers
228 views
.NET Framework Time complexity in the documentation
Where can I find the time complexity for methods in the standard .Net library?
I use MSDN and it occasionally mentions time complexity, but not often (I ran into a similar problem with Java).
For ...
14
votes
6answers
413 views
Is there a shorthand term for O(n log n)?
We usually have a single word for most complexities we encounter in algorithmic analysis:
O(1) == "constant"
O(log n) == "logarithmic"
O(n) == "linear"
O(n^2) == "quadratic"
O(n^3) == "cubic"
O(2^n) ...
14
votes
3answers
8k views
multiset, map and hash map complexity
Hallo everybody,
I would like to know the complexity in Big O notation of the STL multiset, map and hash map classes when:
inserting entries
accessing entries
retrieving entries
comparing entries
14
votes
5answers
2k views
Is there a master list of the Big-O notation for everything?
Is there a master list of the Big-O notation for everything? Data structures, algorithms, operations performed on each, average-case, worst-case, etc.
13
votes
4answers
397 views
Are there any real O(n^n) algorithms?
Is there any real Algorithm with a time complexity O(n^n), that isn't just a gimmick?
I can create such an Algorithm, like computing n^n in O(n^n) / Θ(n^n):
long n_to_the_power_of_m(int n, int m) {
...
13
votes
3answers
441 views
Algorithms with superexponential runtime?
I was talking with a student the other day about the common complexity classes of algorithms, like O(n), O(nk), O(n lg n), O(2n), O(n!), etc. I was trying to come up with an example of a problem for ...
13
votes
3answers
3k views
Can someone please explain the difference between Big-O and Little-O Notation?
I'm having trouble distinguishing between these these two. Can someone please explain the differences to me? I'm a little slow, so examples would probably help.
Thanks
13
votes
12answers
420 views
How much is it fair to assume about implementation when doing big-O calculations?
When programmers versed in a wide variety of languages are discussing the merits of an algorithm expressed in pseudocode, and the talk turns to efficiency, how much should be assumed about the ...
13
votes
12answers
7k views
What is Big O notation? Do you use it?
What is Big O notation? Do you use it?
I missed this university class I guess :D
Does anyone use it and give some real life examples of where they used it?
See also:
Big-O for Eight Year Olds?
...
12
votes
5answers
221 views
What is the complexity of this simple piece of code?
I'm pasting this text from an ebook I have. It says the complexity if O(n2) and also gives an explanation for it, but I fail to see how.
Question: What is the running time of this code?
public ...
12
votes
3answers
313 views
which algorithm can do a stable in-place binary partition with only O(N) moves?
I'm trying to understand this paper: Stable minimum space partitioning
in linear time.
It seems that a critical part of the claim is that
Algorithm B sorts stably a bit-array of size n in
...
12
votes
2answers
466 views
What is the Big-O of String.contains() in Java?
I'm working on a project, and need to optimize the running time. Is String.contains() runtime the same as TreeSet.contains(), which is O(logN)?
The reason I'm asking is I'm building a ...
12
votes
14answers
1k views
computer science: what is the big deal about big O notation
How would big O notation help in my day to day c# programming? Is this just an academic exercise?
12
votes
8answers
688 views
What is O value for naive random selection from finite set?
This question on getting random values from a finite set got me thinking...
It's fairly common for people to want to retrieve X unique values from a set of Y values. For example, I may want to ...