83
votes
33answers
3k 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 …
73
votes
23answers
7k 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 …
61
votes
28answers
3k views
are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
45
votes
9answers
4k views
Plain english explanation of Big O
Can anyone give me a plain English explanation of Big O? With as little formal definition as possible and simple mathematics.
33
votes
17answers
5k 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 …
22
votes
5answers
2k 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 …
22
votes
32answers
3k 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 …
20
votes
36answers
2k 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 …
15
votes
23answers
2k 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 …
15
votes
5answers
2k 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 = …
13
votes
12answers
369 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
4answers
982 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 …
11
votes
4answers
355 views
Regex implementation that can handle machine-generated regex’s: *non-backtracking*, O(n)?
Or, to restate...
Where can I find robustly fast Regex implementation?
Does anyone know of a normal non-backtracking (System.Text.RegularExpressions backtracks) linear time regex implementation …
11
votes
17answers
1k 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 …
10
votes
6answers
529 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 …
