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?
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 …
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 …
0
votes
2answers
92 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; …
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
39 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
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?
61
votes
28answers
3k views
are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
1
vote
2answers
80 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
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 …
