Tagged Questions

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?
6
votes
4answers
290 views
+100

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 …
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 .cont …
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 …
1
vote
1answer
36 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
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 combinati …
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 …
0
votes
5answers
102 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 …
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?
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
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
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: …
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 se …
-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.

1 2 3 4 5 8 next
15 30 50 per page