4
votes
2answers
56 views

complexity of a randomized search algorithm

Consider the following randomized search algorithm on a sorted array a of length n (in increasing order). x can be any element of the array. size_t randomized_search(value_t a[], size_t n, value_t x) ...
-5
votes
0answers
71 views

Algorithm complexity? [closed]

Hi would like to know that my algorithm has asymptotic complexity recursive? regards cronos int solve(pair<int,int> actual) { if(actual.first == PuntoInicio.first && actual.second ...
-1
votes
1answer
54 views

Solving the recurrence T(n) = T(n / 2) + O(1) using the Master Theorem? [closed]

I'm trying to solve a recurrence relation to find out the complexity of an algorithm using the Master Theorem and its recurrences concepts, how can I prove that: T(n) = T(n/2)+O(1) is T(n) = ...
0
votes
2answers
34 views

Step Count in Algorithm

What is the step count for this algorithm in terms of n ? SequentialSearch(a,x,n) { i=n; a [0]=x; while(a [i]!= x) do i = i-1 return i } Please mention the count for each ...
5
votes
2answers
131 views

What's the runtime of this algorithm?

I just wrote an answer to a question: longest common subsequence: why is this wrong? This function is supposed to find the longest substring between two strings, but when I tried to figure out the ...
1
vote
1answer
56 views

When c > 0 Log(n) = O(n)? Not sure why it isn't O(log n)

In my homework, the question asks to determine the asymptotic complexity of n^.99999*log(n). I figured that it would be closer to O( n log n) but the answer key suggests that when c > 0, log n = O(n). ...
-7
votes
4answers
58 views

What is the runtime complexity of the following method considering the simple statements? [closed]

Here is the code in java: void test(int n) { int i, j; ///first loop for ( i = 1; i <= n; i ++) { //second loop for (j ...
13
votes
1answer
111 views

e-commerce: Algorithm for calculating discounts

I'm in need of expert advice on a tricky matter. The scenario is: e-commerce web-site lots of products lots of discounts mixed on these products A product is identified by a unique ProductID and ...
3
votes
2answers
62 views

Example of a factorial time algorithm O( n! )

I'm study time complexity in school and our main focus seems to only deal with polynomial time O(n^c) algorithms and quasi-linear time O(nlog(n)) algorithms with the occasional exponential time O(c^n) ...
2
votes
2answers
104 views

What would cause an algorithm to have O(log log n) complexity?

This earlier question addresses some of the factors that might cause an algorithm to have O(log n) complexity. What would cause an algorithm to have time complexity O(log log n)?
-5
votes
0answers
62 views

Show that it is undecidable if two TMs accept the same language [closed]

I was asked this question at an interview, and couldn't answer it, and would like to know how it is 'shown'. This is NOT HW!
5
votes
2answers
98 views

Get an O(N) algorithm to find a product of a collection of numbers with a strange constraint

This is a question when I participated a recent interview, I think it interesting. Let's say int n=10; Input : An array int a[10]; Output: An array float b[10]; Requirement: b[0]= ...
2
votes
0answers
48 views

Generating suffix tree of string S[2..m] from suffix tree of string S[1..m]

Is there a fast (O(1) time complexity) way of generating a suffix tree of string S[2..m] from suffix tree of string S[1..m]? I am familiar with Ukkonen's, so I know how to make fast suffix tree of ...
0
votes
1answer
56 views

If klgk = Θ(n), then k = Θ(n/lgn)

Ok so first off I'm new to this site so if by some chance I'm doing anything wrong please let me know. I need help with the following proof. I am NOT looking for the answer, simply guidance. Using ...
0
votes
3answers
63 views

Is linear-time reduction symmetric?

If a problem X reduces to a problem Y is the opposite reduction also possible? Say X = Given an array tell if all elements are distinct Y = Sort an array using comparison sort Now, X reduces to Y ...
1
vote
1answer
95 views

the O(), θ() and Ω()time complexities of a code

Please help me to find the O(), θ() and Ω() time complexities of the following code. if(x<A) Func1(n); else if(x<A+1000) Func2(n); else if(x<A+5000) Func3(n); else Func4(n); Given: ...
0
votes
1answer
64 views

What is the time complexity for repeatedly doubling a string?

Consider the following piece of C++ code: string s = "a"; for (int i = 0; i < n; i++) { s = s + s; // Concatenate s with itself. } Usually, when analyzing the time complexity of a piece of ...
0
votes
2answers
87 views

Time Complexity - Calculating Worst Case For Algorithms

I am reading some information on time complexity and I'm quite confused as to how the following time complexities are achieved and if there is a particular set of rules or methods for working this ...
-1
votes
0answers
34 views

Particularly Tricky Recurrence Relation (Master's Theorem) [migrated]

Master's theorem is shown below, The recursive function to be solved is shown below, I understand that a refers to the number of recursive calls in this function (3 in this case). b refers to ...
0
votes
3answers
37 views

Nested Polynomial-Time functions

If I run a polynomial-time subroutine a polynomial number of times, what are some examples of a way that this is done in exponential time? "show that a polynomial number of calls to polynomial time ...
0
votes
1answer
56 views

Factors that facilitate to compare two algorithms of the same time complexity

I have to complete a study on analysis of digital algorithms. I need some expert ideas on the topic. I understand that two algorithms having the same time complexity are affected by the constant, say ...
0
votes
1answer
94 views

Algorithm complexity for minimum number of clique in a graph

I have written an algorithm which solves the minimum number of clique in a graph. I have tested my backtracking algorithm, but I couldn't calculate the worst case time complexity, I have tried a lot ...
0
votes
1answer
79 views

Asymptotic notations

From what I have studied: I have been asked to determine the complexity of a function with respect to another function. i.e. Given f(n) and g(n), determine O(f(n(). In such cases, I substitute values, ...
2
votes
1answer
106 views

Find nearest by index numbers in array less than number at given index

This is an algorithm optimization problem. I have an integer array A and want to build array B such that B[i] contains index j of the element in A[j] such that (B[i] = j) 1. j > i 2. A[j] < ...
0
votes
2answers
52 views

Sorted array and finding sum with complexity O(n)

We have sorted array arr[]={2,4,5,7,8,12,16,18,20}. We need to find out pair of elements whose addition is 12, with complexity O(n). Could anyone help on it?
0
votes
2answers
108 views

Dijkstra algorithm complexity anaylsis misunderstanding

Given the following algorithm from Cormen book: DIJKSTRA(G,w,s) 1. INITIALIZE-SINGLE-SOURCE(G,s) 2. S <-- {0} 3. Q <-- V[G] 4. while (Q != {0}) 5. do u <-- extract-min(Q) 6. s <-- ...
-1
votes
3answers
46 views

Whats the number of steps this algorithm will take for the general case where the input is of size n?

Here's the algorithm: Let a = 30, i = 1 While i < n For j = i+1 to n If ABS[(j*i)+20] < a then a = ABS[(j*i)+20] i = i + 1 Return k Whats the number of steps this algorithm ...
4
votes
1answer
101 views

Why do Fibonacci heaps need cascading cuts?

I'm learning f-heap from 'introduction to algorithms', and the 'decrease-key' operation really confuses me -- why does this need a 'cascading-cut' ? if this operation is removed: the cost of ...
1
vote
1answer
485 views

Explanation of Algorithm for finding articulation points or cut vertices of a graph

I have searched the net and could not find any explanation of dfs algorithm for finding all articulation vertices of a graph. There is no wiki page even :( From reading around, i got to know basic ...
0
votes
1answer
85 views

Find Worst Case complexity of below algorithm

I am trying to find the worst case complexity of algorithm below. The alogorithm finds the location LOC1 pf the largest element and the location LOC2 of the second largest element in an array DATA ...
0
votes
2answers
81 views

Adding square matrices in O(n) time?

Say we have two square matrices of the same size n, named A and B. A and B share the property that each entry in their main diagonal diagonals is the same value (i.e., A[0,0] = A[1,1] = A[2,2] ... = ...
0
votes
0answers
70 views

Graph backtrack complexity

I'm trying to analyse the complexity of backtracking a graph in order to find the longest path. My algorithm consists of topological sort and then backtrack from each vertex in order to find the ...
0
votes
1answer
26 views

Deciding intersection between ordered arrays complexity

Problem: Given two sorted arrays A[] and B[] of size n each, check whether or not they have a non-empty intersection (I don't need the intersection itself, only the decision) Solution: Making a ...
2
votes
4answers
86 views

Would it make sense to specify complexity as O(fibonacci(n))?

Suppose you have an algorithm which processes at first N elements, then half of N, then quarter of N and so on. Would it make sense to characterize the running time of such an algorithm as ...
-1
votes
1answer
144 views

Which is larger, lg(n!) or (lg(n))!? [closed]

I am writing a homework question and have no idea how to prove it. Please give me some hint. The hint is using mathematic induction and the textbook has the (lgn)! = Θ((lgn)^(lgn) + 0.5e^(-lgn) ) ...
0
votes
1answer
92 views

Finding smallest number greater than a given number (Interview) [duplicate]

I was given an interview question recently, say u have an ordered list of numbers(the number of elements can be quite big in the order of 100000) and u are to find the smallest number greater than a ...
6
votes
3answers
267 views

Minimizing steps to distribute in a candies in a circle

There are n children in a circle. Each of them has some candies (may be negative, positive or zero). They can give at a time a single candy to their neighbors. The end result is that they all should ...
1
vote
0answers
84 views

Sudoku polynomial algorithm?

I have a project to do for a complexity and problem solving course, and I've decided to base the project on Sudoku. From the research I've done, Sudoku is an NP-Complete problem (which is required for ...
4
votes
4answers
134 views

Nearest point to point, nearest point to line

Imagine a set of m points in 2D plane, called "candidates". And then one of two scenarios: there is also a set of n points ("objects") - see Fig. 1 there is also a set of n lines collinear with X or ...
1
vote
4answers
134 views

Divide and conquer - why does it work?

I know that algorithms like mergesort and quicksort use the divide-and-conquer paradigm, but I'm wondering why does it work in lowering the time complexity... why does usually a "divide and conquer" ...
2
votes
1answer
160 views

Efficiently find all connected subgraphs

Is there an efficient(*) algorithm to find all the connected (induced) subgraphs of a connected undirected vertex-labelled graph? (*) I appreciate that, in the general case, any such algorithm may ...
1
vote
2answers
95 views

Dynamic Programing- complexity

I have a homework problem that I have been trying to figure out for some time now, and I can't figure it out for the life of me. I have a sheet of size X*Y, and a set of patterns of lesser sizes, ...
5
votes
2answers
314 views

How to find all nodes in a graph equidistant from a given set of nodes?

If you have a simple undirected graph G(V,E) and F which is a subset of V. How can you find some node v such that the distance from every node in F to v is the same and the distances are minimized? ...
2
votes
1answer
169 views

Is “house coloring with three colors” NP?

Consider the problem described here (reproduced below.) Can some better known NP-complete problem be reduced to it? The problem: There are a row of houses. Each house can be painted with three ...
6
votes
7answers
200 views

What is the fastest algorithm to find an element with highest frequency in an array

I have two input arrays X and Y. I want to return that element of array X which occurs with highest frequency in array Y. The naive way of doing this requires that for each element x of array X, I ...
2
votes
1answer
60 views

The property of complexity class P

I'm reading the book <<Introduction to Algorithms>>, third edition. There is a proof to theorem 34.2 (Page 1059): Because the class of languages decided by polynomial-time algorithms ...
0
votes
1answer
78 views

2 keys search algorithm in O(n)

i have to find an algorithm to sort an array in O(n) complexity. The array has the length n with two different keys. For example this array in java: int[][] array = {{1,2},{2,1},{1,1}}; The result ...
5
votes
1answer
134 views

data structure for indexing big file

I need to build an index for a very big (50GB+) ASCII text file which will enable me to provide fast random read access to file (get nth line, get nth word in nth line). I've decided to use ...
1
vote
2answers
101 views

Does the complexity of strongly NP-hard or -complete problems change when their input is unary encoded? [closed]

Does the difficulty of a strongly NP-hard or NP-complete problem (as e.g. defined here http://en.wikipedia.org/wiki/Strongly_NP-complete) change when its input is unary instead of binary encoded? ...
1
vote
3answers
172 views

Calculate the complexity of a nested for loop

I want to calculate the complexity of this nested for loop: s = 0; for(i=1; i<=n; i*=2) for(j=1; j<=i; j*=2) s++; What strategy do I use to find the Big O complexity of this piece of ...

1 2 3 4 5 13