2
votes
3answers
47 views
Best practices for regex performance VS sheer iteration
I was wondering if there are any general guidelines for when to use regex VS "string".contains("anotherString") and/or other String API calls?
While above given decision for .contains() is trivial …
0
votes
2answers
94 views
Difference between big-O notation and big-O estimate [closed]
Hi every one ..
I want to know what is the difference between the (big-O notation and the big-O estimate ) ..
It's will be good to explain it on these examples :
1) for(int i = 0; i < n; …
0
votes
2answers
123 views
Big O Notation Interview Questions
What Big-O notation questions have you been asked? Did you find them to be good questions? Did the interviewer actually understand the concept?
1
vote
7answers
114 views
What kind of algorithms have shortened running time for longer inputs? [closed]
Possible Duplicate:
are there any O(1/n) algorithms?
I've been reading up on various algorithms recently, and have gotten very used to seeing things with O([some combination of n, n^2 and log …
1
vote
1answer
40 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 best possible …
0
votes
1answer
127 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 two convert the BST …
0
votes
5answers
104 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
worst case running …
5
votes
3answers
83 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), Log(NlogN) or log …
1
vote
2answers
81 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
1
vote
3answers
69 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: O(n log(n))
How …
1
vote
9answers
340 views
What’s my Big O?
My program of sorting values clocks at:
100000 8s
1000000 82s
10000000 811s
Is that O(n)?
0
votes
7answers
161 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 sequence contains n …
4
votes
3answers
85 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
votes
2answers
68 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.
0
votes
5answers
132 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);
}
}
I think …
