Tagged Questions
The time complexity of an algorithm quantifies the amount of time taken by an algorithm to run as a function of the size of the input to the problem. The time complexity of an algorithm is commonly expressed using big O notation, which suppresses multiplicative constants and lower order terms.
202
votes
3answers
6k views
If strings are immutable in .NET, then why does Substring take O(n) time?
Given that strings are immutable in .NET, I'm wondering why they have been designed such that string.Substring() takes O(substring.Length) time, instead of O(1)?
i.e. what were the tradeoffs, if any?
...
33
votes
22answers
3k views
Worse is better. Is there an example?
Is there a widely-used algorithm that has time complexity worse than that of another known algorithm but it is a better choice in all practical situations (worse complexity but better otherwise)?
An ...
17
votes
2answers
2k views
Time complexity of Sieve of Eratosthenes algorithm
From Wikipedia:
The complexity of the algorithm is
O(n(logn)(loglogn)) bit operations.
How do you arrive at that?
That the complexity includes the loglogn term tells me that ...
17
votes
5answers
5k views
How do I find the median of numbers in linear time using heaps?
Wikipedia says:
Selection algorithms: Finding the min,
max, both the min and max, median, or
even the k-th largest element can be
done in linear time using heaps.
All it says is that it ...
16
votes
7answers
1k views
What is the difference between O, Ω, and Θ?
I am learning algorithm analysis. I am having trouble understanding the difference between O, Ω, and Θ.
The way they're defined is as follows:
f(n) = O(g(n)) means c · g(n) is an
upper bound ...
14
votes
4answers
228 views
.NET Framework Time complexity in the documentation
Where can I find the time complexity for methods in the standard .Net library?
I use MSDN and it occasionally mentions time complexity, but not often (I ran into a similar problem with Java).
For ...
14
votes
8answers
520 views
Is partitioning easier than sorting?
This is a question that's been lingering in my mind for some time ...
Suppose I have a list of items and an equivalence relation on them, and comparing two items takes constant time.
I want to return ...
13
votes
2answers
248 views
What is the proper problem name / algorithm for this problem description in computer science theory?
The problem is that I have X items of varying weighted values that must go into Y containers. The containers are of differing sizes (e.g. hold differing maximum weights). The total load of each ...
13
votes
5answers
2k views
Is there an O(n) integer sorting algorithm?
The last week I stumbled over this paper where the authors mention on the second page:
Note that this yields a linear running time for integer edge weights.
The same on the third page:
This ...
13
votes
5answers
1k views
Non-exponential solution to maze problem?
Given a n*n-sized multi-headed acyclic graph where each node has at most three children and three parents, is there an non-exponential algorithm to identify whether a n-length path exists where no two ...
12
votes
5answers
222 views
What is the complexity of this simple piece of code?
I'm pasting this text from an ebook I have. It says the complexity if O(n2) and also gives an explanation for it, but I fail to see how.
Question: What is the running time of this code?
public ...
11
votes
6answers
411 views
What is the time complexity of the sleep sort? [closed]
Given this sort algorithm how do you express its time complexity?
Originally presented here
#!/bin/bash
function f() {
sleep "$1"
echo "$1"
}
while [ -n "$1" ]
do
f "$1" &
shift
done
...
11
votes
7answers
198 views
Where should the line between property and method be? [closed]
Possible Duplicate:
Properties vs Methods
For many situations it is obvious whether something should be a property or a method however there are items that might be considered ambiguous.
...
10
votes
2answers
315 views
Non-Trivial Lazy Evaluation
I'm currently digesting the nice presentation Why learn Haskell? by Keegan McAllister. There he uses the snippet
minimum = head . sort
as an illustration of Haskell's lazy evaluation by stating ...
10
votes
5answers
864 views
What are the “hardest” problems which can be solved in polynomial time?
Recently I read a seminar work which says:
The matching algorithm [for general graphs] can be extended
to the weighted case, which appears to
be one of the "hardest" combinatorial
...
10
votes
7answers
1k views
time complexity analysis of code
int foo(int n)
{
int x=2;
while (x<n)
{
x = x*x*x;
}
return x;
}
Now, i need to analyze its time complexity. I noticed it reaches n much faster than just log(n). I ...
10
votes
4answers
2k views
Java Data Structures Reference
Can anyone give me references of a web site containing a summary of the main Java data structures, and their respective complexity in time (for some given operations like add, find, remove), e.g. ...
9
votes
1answer
120 views
What is the Time Complexity of this Function in Scheme?
I am trying to find the time complexity of this function in Theta notation.
Now, n is a positive integer, and lst is a list with 2 numbers.
(define (func n lst)
(if (= n 0) lst
(accumulate ...
9
votes
5answers
2k views
Can some one help solving this recurrence relation?
T(n) = 2T(n/2) + 0(1)
T(n) = T(sqrt(n)) + 0(1)
first one I use substitution method for n, logn, etc, all gave me wrong answers.
Recurrence trees: I dont know if I can apply as the root will be a ...
9
votes
8answers
3k views
PHP Arrays - Remove duplicates ( Time complexity )
Okay this is not a question of "how to get all uniques" or "How to remove duplicates from my array in php". This is a question about the time complexity.
I figured that the array_unique is somewhat ...
9
votes
6answers
3k views
How expensive is it to dereference a pointer in C++?
how expensive is it to perform the dereference operation on a pointer in C++? I can imagine that the memory transfer is somehow proportional to the object size, but I want to know how expensive the ...
8
votes
3answers
272 views
tricky linked list problem
Given three lists: A, B and C of length n each. if any 3 three numbers (1 from each list), sum up to zero return true.I want to solve this with o(n)complexity.I have sorted the lists and I can think ...
8
votes
13answers
690 views
Can we compute this in less than O(n*n) …( nlogn or n)
This is a question asked to me by a very very famous MNC. The question is as follows ...
Input an 2D N*N array of 0's and 1's. If A(i,j) = 1, then all the values corresponding to the ith row and the ...
8
votes
5answers
2k views
Time complexity of memory allocation
What is the time complexity of dynamic memory allocation using new, malloc, etc.? I know very little about how memory allocators are implemented, but I assume the answer is that it depends on the ...
7
votes
6answers
224 views
What does “constant” complexity really mean? Time? Count of copies/moves? [closed]
I can think of three operations in C++ that can be described in some sense as having 'constant' complexity. I've seen some debate(*) over what this means, and it seems to me that we could just say ...
7
votes
1answer
169 views
What is the Computational Complexity of Mathematica's CylindricalDecomposition
Mathematica' CylindricalDecomposition implements an algorithm known as Cylindrical Algebraic Decomposition. Wolfram MathWorld's article on Cylindrical Algebraic Decomposition says that this algorithm ...
7
votes
4answers
154 views
(Dis)Proving that one algorithm works faster than another due to language internals
For a project at university, we had to implement a few different algorithms to calculate the equivalenceclasses when given a set of elements and a collection of relations between said elements.
We ...
7
votes
4answers
280 views
what is the complextity of sort() function in C++ standard library
what is the complexity of sort() function in standard c++ library.. ?
which sort is applied there ? is there any rule of applying any particular sorting algorithm there ?
thnxx in advance..!!!
7
votes
11answers
1k views
Can I reduce the computational complexity of this?
Well, I have this bit of code that is slowing down the program hugely because it is linear complexity but called a lot of times making the program quadratic complexity. If possible I would like to ...
6
votes
3answers
425 views
binary search vs binary search tree
What is the benefit of a binary search tree over a sorted array with binary search? Just with mathematical analysis I do not see a difference, so I assume there must be a difference in the low-level ...
6
votes
4answers
550 views
Finding contiguous ranges in arrays
You are given an array of integers. You have to output the largest range so that all numbers in the range are present in the array. The numbers might be present in any order. For example, suppose ...
6
votes
2answers
501 views
Search algorithm and its complexity
I was asked this question in an interview: Assume an infinite array of integers which is sorted. How would you search for an integer in this array? What would be time complexity?
I guessed what the ...
6
votes
2answers
529 views
Why is strand sort O(n sqrt n) in the average case?
I found strand sort very appealing to sort singly linked lists in constant space, because it is much faster than for example insertion sort.
I see why it is O(n) in the best case (the list is already ...
6
votes
3answers
229 views
Is Enumerable.ElementAt<TSource> O(1) for HashSet?
Is the implementation in HashSet.ElementAt O(1) and if not, what is it?
6
votes
2answers
686 views
Calculating the probability of system failure in a distributed network
I am trying to build a mathematical model of the availability of a file in a distributed file-system. I posted this question at MathOverflow but this might as well be classified as a CS-question so I ...
6
votes
5answers
419 views
Recommended Complexity Theory Book(s)
I'd like to start off by saying that I have no formal training in computer science. I have several years of programming experience but I'm entirely self-taught. Additionally, I have a relatively good ...
6
votes
2answers
2k views
What does O(log(log(n))))-competitive mean?
I was going through some data structures and I noticed this as a time complexity:
O(log(log(n))))-competitive.
I read that constant-competitive was the ratio of the expected time/optimal time. ...
6
votes
2answers
2k views
What is the time complexity of a size() call on a LinkedList in Java?
As the title asks, I wonder if the size() method in the LinkedList class takes amortized O(1) time or O(n) time.
Thanks!
6
votes
8answers
3k views
Sorting in linear time?
Given an input set of n integers in the range [0..n^3-1], provide a linear time sorting algorithm.
This is a review for my test on thursday, and I have no idea how to approach this problem.
6
votes
6answers
1k views
Algorithms for Big O Analysis
What all algorithms do you people find having amazing (tough, strange) complexity analysis in terms of both - Resulting O notation and uniqueness in way they are analyzed?
5
votes
4answers
69 views
Does passing reverse=True when sorting a list in Python affect efficiency?
When calling sort() on a list in Python, passing cmp=f slows down the sort. Does passing reverse=True affect the efficiency of the sort in any way (or is it identical to sorting without reversing)?
5
votes
1answer
83 views
How to determine simplex time complexity (ie Max flow)
Simplex algorithm is said to have exponential worst case time complexity. Yet it is still often used in practice. How can you determine the average time complexity for a certain problem (being solved ...
5
votes
2answers
199 views
Performance of immutable set implementations in Scala
I have recently been diving into Scala and (perhaps predictably) have spent quite a bit of time studying the immutable collections API in the Scala standard library.
I am writing an application that ...
5
votes
2answers
151 views
Maintaining a container of objects sorted by the difference between that object's member and its neighbor's member
I'm working on implementing a histogram, and one of the key points is the quick merging of histogram bins. Because I don't have a priori knowledge of the data set being approximated by the histogram, ...
5
votes
5answers
463 views
Can a Fibonacci function be written to execute in O(1) time?
So, we see a lot of fibonacci questions. I, personally, hate them. A lot. More than a lot. I thought it'd be neat if maybe we could make it impossible for anyone to ever use it as an interview ...
5
votes
6answers
224 views
Time complexity of a brute-force embedded MD5sum
A question I've been meaning to have answered for a long time - What would be the time complexity of finding an MD5sum of a compiled binary that contains that same MD5 statically embedded in it, say, ...
5
votes
6answers
431 views
time complexity of power
I implemented this function power() which takes two arguments a and b and computes ab.
typedef long long int LL;
LL power(int a,int b)
{
int i = 1;
LL pow = 1;
for( ; i <= b ; ++i )
...
5
votes
6answers
303 views
I have a non-performant method, how can I improve its efficiency?
I have a simple method to compare an array of FileInfo objects against a list of filenames to check what files have been already been processed. The unprocessed list is then returned.
The loop of ...
5
votes
4answers
1k views
Time complexity of Euclid's Algorithm
I am having difficulty deciding what the time complexity of Euclid's great common denominator algorithm is. Sample pseudo-code is:
function gcd(a, b)
while b ≠ 0
t := b
b := a mod ...
5
votes
1answer
246 views
Get the middle of an Ix range in O(1) time in Haskell
I was playing around with this code kata in Haskell, and I came across the question in the topic.
It's trivial to find the midpoint of an array whose indexes are a single numerical value, but ...