82
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 mos …
0
votes
1answer
116 views
Find two numbers in a binary search tree that add up to a third number
You are given a BST of numbers. You have to find two numbers (a, b) in it such that a + b = S, in O(n) time and O(1) space.
What could be the algorithm?
One possible way could be …
0
votes
5answers
92 views
Worst case running time (Big O)
Hi every one. I have this question, and I don't know how to solve it, because I don't understand it. :(
The question is:
Programs A and B are analyzed and are found to have
…
5
votes
3answers
82 views
Base of Logarithm in Complexity Of The Algorithm [closed]
Possible Duplicate:
What is the base of the logarithm for the purposes of Algorithms?
While writing the complexity of an algorithm to be in terms of logarithm, e.g. log(N) …
1
vote
0answers
14 views
Graph Adjacency List How to implement O(1) lookup for nodes/vertexes. Array?
I read in the specifications for graphs implemented with Adjacency List that adding edges is done in constant time. BUT that would require a node lookup with O(1). I would like bes …
1
vote
9answers
333 views
What’s my Big O?
My program of sorting values clocks at:
100000 8s
1000000 82s
10000000 811s
Is that O(n)?
1
vote
2answers
66 views
What is the complexity of inserting into sorted link list in big-O notation?
What is the complexity of inserting into sorted link list in big-O notation? Let say I have 5 elements and what is the complexity to insert all of them.
Thank you very much
3
votes
3answers
84 views
What is the base of the logarithm for the purposes of Algorithms?
While considering O(log(N)) for time complexity, what is the base of log?
1
vote
3answers
67 views
How to add/merge several Big O’s into one
If I have an algorithm which is comprised of (let's say) three sub-algorithms, all with different O() characteristics, e.g.:
algorithm A: O(n)
algorithm B: O(log(n))
algorithm C: …
0
votes
7answers
158 views
What is the complexity of this algorithm?
procedure max (a[1..n]: integers)
max := a[1]
for i := 2 to n
if max < a[i] then max := a[i]
Is the complexity O(1) or O(n) with the best case scenario? The se …
-1
votes
2answers
65 views
Sorted array Big o notation
Hello
I just have a simple question, why is the big O notation of a sorted array O(log N)? It will be a sorted array.
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( …
60
votes
28answers
3k views
are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
0
votes
5answers
128 views
What is the running time of these mystery?
mystery(int A[1..n], int n) {
// pre: n is a power of 2 for i=1..n {
for i = 1...n {
A[i] = A[i] + 1;
}
if (n>1) mystery(A, n/2);
…
71
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 examp …
