Tagged Questions

-1
votes
2answers
43 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.
6
votes
3answers
140 views

Find buy/sell prices in array of stock values to maximize positive difference

Got this question in an interview today, and its optimized solution stopped me cold (which blows, because I really wanted to work for this company...) Given a single array of real …
1
vote
8answers
192 views

complexity help..O(n^2), 0(nlog) etc

hey there could someone please help me determine the complexity?. An example given in my class was bubble sort int main() { int a[10] = {10,9,8,7,6,5,4,3,2,1}; int i,j,tem …
5
votes
8answers
141 views

Efficient way of calculating likeness scores of strings when sample size is large?

Let's say that you have a list of 10,000 email addresses, and you'd like to find what some of the closest "neighbors" in this list are - defined as email addresses that are suspici …
1
vote
10answers
434 views

What’s the fastest algorithm for sorting a linked list?

I'm curious if n log n is the best a linked list can do. Thanks
9
votes
6answers
384 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 b …
3
votes
1answer
77 views

Are there any online algorithms for planarity testing?

I know that planarity testing can be done in O(v) (equivalently O(e), since planar graphs have O(v) edges) time. I wonder if it can be done online in O(1) amortized time as each e …
0
votes
4answers
150 views

Which Java collection’s Linked list adds in O(1) when given an element?

hi, i need to insert into a very large LinkedList, whose elements i hold in a fast-access HashMap. it's important to keep the list in order (which is not the natural order of the …
-1
votes
4answers
141 views

Complexity class

Assume that methods m1 and m2 are static void and compute the same result by processing an argument of type Object[]. Empirically we find that m1 -> T(N) = 100N and m2 -> T(N) = 10 …
1
vote
3answers
112 views

Complexity of a given function

When I analyzed the complexity of the code segment below, I found that it is O(n/2). But while searching the internet I discovered that it is probably O(n). I'd like to know who's …
0
votes
5answers
141 views

Java How do you find a complexity class for algorithms?

Hi I have a question to find a complexity class estimate of a algorithm. The question gives recorded times for an algorithm. So, do I just average out the times based on how it wa …
4
votes
7answers
274 views

Can a program output a copy of itself

I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this? I do not acce …
4
votes
3answers
303 views

How can I find the common ancestor of two nodes in a binary tree?

The Binary Tree here is not a Binary Search Tree. Its just a Binary Tree. The structure could be taken as - struct node { int data; struct node *left; struct node *ri …
0
votes
3answers
121 views

Number of sequences over {0,1} such that sequence contains at least half ones

How to calculate number of sequences over {0,1} such that each sequence contains at least half ones?
2
votes
11answers
235 views

How to find all brotherhood strings?

I have a string, and another text file which contains a list of strings. We call 2 strings "brotherhood strings" when they're exactly the same after sorting alphabetically. For e …

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