Tagged Questions

121
votes
22answers
40k views

Big O, how do you calculate/approximate it?

Most people with a degree in CS will certainly know what Big O stands for. It helps us to measure how (in)efficient an algorithm really is and if you know in what category the problem you are trying ...
53
votes
6answers
3k views

List of Big-O for PHP functions

After using PHP for a while now, I've noticed that not all PHP built in functions as fast as expected. Consider the below two possible implementations of a function that finds if a number is prime ...
24
votes
16answers
35k views

How to find the kth largest element in an unsorted array of length n in O(n)?

I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this? Cheers! p.s. this is not for ...
23
votes
5answers
1k views

How is the PHP array implemented on the C level?

The PHP array is one of PHP's core features. It is sparse, allows multi-typed keys in the same array, and supports set, dictionary, array, stack/queue and iterative functionality. But after working ...
22
votes
23answers
3k 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 ...
14
votes
4answers
555 views

Is it possible that time complexity of any algorithm decrease as the input size increase, any example

I just read in Cormen's algorithm book that big-O and big-omega do not follow the trichotomy property. That means for two functions, f(n) and g(n), it may be the case that neither f(n) = O(g(n)) nor ...
11
votes
3answers
300 views

Why is an even-odd split 'faster' for MergeSort?

MergeSort is a divide-and-conquer algorithm that divides the input into several parts and solves the parts recursively. ...There are several approaches for the split function. One way is to ...
11
votes
5answers
874 views

Regex implementation that can handle machine-generated regex's: *non-backtracking*, O(n)?

Edit: This question has considerably evolved since I first asked it. See below for two fast+compatible, but not completely fully featured implementations. If you know of more or better ...
8
votes
4answers
697 views

O(1) lookup in non-contiguous memory?

Is there any known data structure that provides O(1) random access, without using a contiguous block of memory of size O(N) or greater? This was inspired by this answer and is being asked for ...
8
votes
8answers
1k views

what does O(N) mean [closed]

Possible Duplicate: What is Big O notation? Do you use it? Hi all, fairly basic scalability notation question. I recently recieved a comment on a post that my python ordered-list ...
7
votes
4answers
202 views

Why is List(T).Clear O(N)?

According to the MSDN documentation on the List<T>.Clear method: This method is an O(n) operation, where n is Count. Why O(n)? I ask because I would assume that clearing a List<T> ...
6
votes
3answers
185 views

Big O Complexity of a method

I have this method: public static int what(String str, char start, char end) { int count=0; for(int i=0;i<str.length(); i++) { if(str.charAt(i) == start) { ...
6
votes
4answers
1k views

Is there any general rule on SQL query complexity Vs performance?

1)Are SQL query execution times O(n) compared to the number of joins, if indexes are not used? If not, what kind of relationship are we likely to expect? And can indexing improve the actual big-O ...
6
votes
7answers
788 views

Algorithm Speed Order of

Sometimes I get totally fooled trying to estimate an algorithm's speed with the O(x) notation, I mean, I can really point out when the order is O(n) or O(mxn), but for those that are O(lg(n)) or ...
6
votes
3answers
624 views

Where can I find the time and space complexity of the built-in sequence types in Python

I've been unable to find a source for this information, short of looking through the Python source code myself to determine how the objects work. Does anyone know where I could find this online?
5
votes
2answers
220 views

Big O effeciency for multiple variables

I'm trying to rate the efficiency of a function where the input is an array of strings. The algorithm always iterates through every item in this array. This strings contained in this array are of ...
5
votes
3answers
458 views

Big O for a nested series of for loops

I've got a question about calculating Big O running times for a series of loops, that are nested in an outer for loop. For example: for (50,000 times) { for (n times) { //Do ...
5
votes
6answers
439 views

Mapping from String to integer - performance of various approaches

Let's say that I need to make a mapping from String to an integer. The integers are unique and form a continuous range starting from 0. That is: Hello -> 0 World -> 1 Foo -> 2 Bar -> ...
4
votes
2answers
96 views

Big-O analysis with functions within functions

I'm confused about how Big-O works when dealing with functions within functions (when analyzing worst case). For example, what if you have something like: for(int a = 0; a < n; a++) { *some ...
4
votes
4answers
145 views

Improving stepping through an array twice (Nested loop on same array)

I have a large set of data that I want to cycle through in order to determine various statistics on the data set from a point in time 'D1' to a point in time in the future 'D2'. Basically, I want to ...
4
votes
3answers
139 views

What is the running time of this powerset algorithm

I have an algorithm to compute the powerset of a set using all of the bits between 0 and 2^n: public static <T> void findPowerSetsBitwise(Set<T> set, Set<Set<T>> results){ ...
4
votes
7answers
367 views

Why is Sieve of Eratosthenes more efficient than the simple “dumb” algorithm?

If you need to generate primes from 1 to N, the "dumb" way to do it would be to iterate through all the numbers from 2 to N and check if the numbers are divisable by any prime number found so far ...
4
votes
6answers
570 views

STL performance O(ln(n)) questions

Please, can someone explaine this: If documentations says that STL std::vector finding element speed performace = O(ln(n)), what does it mean. O(ln(n)) - what is "O", where I can read about that? ...
4
votes
4answers
349 views

BigO running time on some methods

Ok, these are all pretty simple methods, and there are a few of them, so I didnt want to just create multiple questions when they are all the same thing. BigO is my weakness. I just cant figure out ...
4
votes
3answers
155 views

Are there any cases where LINQ's .Where() will be faster than O(N)?

Think the title describes my thoughts pretty well :) I've seen a lot of people lately that swear to LINQ, and while I also believe it's awesome, I also think you shouldn't be confused about the fact ...
4
votes
4answers
287 views

Find if there is an element repeating itself n/k times

You have an array size n and a constant k (whatever) You can assume the the array is of int type (although it could be of any type) Describe an algorithm that finds if there is an element(s) that ...
4
votes
5answers
867 views

What is the time complexity of LinkedList.getLast() in Java?

I have a private LinkedList in a Java class & will frequently need to retrieve the last element in the list. The lists need to scale, so I'm trying to decide whether I need to keep a reference to ...
4
votes
5answers
273 views

Big O question

If I have the following code: IterateArray(object[] array) { for(int i=0; i<array.length; i++) { Dosomething(array[i]); } } and the Dosomething(object) method's time ...
3
votes
1answer
65 views

How does MATLAB treat operations on subarrays in terms of speed and memory

I have large arrays which I am doing fairly simple linear algebra on. I have achieved good speed ups by vectorising the operations but i want to know how MATLAB treats the subarrays. I pre-allocate ...
3
votes
1answer
252 views

Complexity Comparisons Between Data Structures

Hi does anyone know where I can find a table which shows the Big O of operations (insert, delete, search) for common data structures?
3
votes
3answers
388 views

If not BigO, then BigOmega?

So if a function or running time is not BigO of f(n), can we say its BigOmega of f(n)?
3
votes
7answers
292 views

BigO bound on some pseudocode

AllDistinct(a1 , . . . , an ) if (n = 1) return True for i := n down to 2 begin if (LinearSearch(a1 , . . . , ai−1 ; ai ) != 0) return False end return True Give a big-O bound on the ...
3
votes
4answers
345 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 ...
3
votes
12answers
1k views

Time Complexity O() of isPalindrome()

I have this method isPalindrome() and am trying to find the time complexity of it, and also rewrite the code more efficiently. boolean isPalindrome(String s) { boolean bP = true; for(int i=0; ...
3
votes
6answers
3k views

Is System.currentTimeMillis() the best measure of time performance in Java?

Is System.currentTimeMillis() the best measure of time performance in Java? Are there any gotcha's when using this to compare the time before action is taken to the time after the action is taken? Is ...
3
votes
3answers
298 views

How to model execution time of algorithms?

Which models of algorithm running time exist? We all expect mergesort to be faster than bublesort, and note that mergesort makes O(n log n) comparisons vs. O(n2) for bubblesort. For other ...
2
votes
5answers
73 views

Figuring out the running time and space of a program

Is there a good tutorial to understand how one calculates the running time and space for a given piece of code? I am looking at these coding books and the questions tell the running time however there ...
2
votes
2answers
67 views

When f(n) = n^.1 and g(n) = log(n)^10, does f(n) = Ω(g)?

I was told that "any exponential trumps any logarithm". But when the exponential is between zero and one, doesn't the execution time of the logarithm grow much faster? So by that logic it would be f ...
2
votes
3answers
194 views

running time of list.index(x) in python

I'm referring to this: http://docs.python.org/tutorial/datastructures.html what would be the running time of list.index(x) function in terms of big O notation?
2
votes
2answers
261 views

how efficient is python's max function

the function max() which takes the maximum element from a list...what is its running time in terms of big O notation? using python 3
2
votes
2answers
184 views

What is the worst case analysis of this code fragment?

sum = 0; for (int i = 0; i < N; i++) for(int j = 0; j < i*i; j++) sum++; I'm not entirely sure of my answer; I think the inner loop runs i^2 operations and the outer loop runs N times so ...
2
votes
3answers
341 views

Running time of calculating x^y

How do I go about finding the running time (in Big-O notation) of the basic algorithm that performs (y − 1) multiplications by x to find x^y? Edit: I also need to keep in mind the running time of ...
2
votes
7answers
1k views

Efficiency of Sort Algorithms

I am studying up for a pretty important interview tomorrow and there is one thing that I have a great deal of trouble with: Sorting algorithms and BigO efficiencies. What number is important to know? ...
1
vote
3answers
90 views

Big O of two functions

I have been programming in PHP for a long time now, and as I don't come from a computer science / math background I only have a basic understanding of the Big O notation, so I have taken a function ...
1
vote
3answers
68 views

When would O(n*n) be quicker then O (log n)?

I have this question on a practice test and I'm not sure of when code would run quicker on O(n*n) over O(log n).
1
vote
7answers
114 views

Which is faster ? double [][] matrix or ArrayList<ArrayList<Double>>

In Java which is faster note that I don't need the flexibility of (remove, add)in Big O thing. But I certainly need the Access Big O. The operation is only to multiply 2 matrices or subtract, add ...
1
vote
2answers
283 views

What are the rules for the “O(n log n) barrier” for sorting algorithms?

I wrote a simple program that sorts in O(n). It is highly memory inefficient, but that's not the point. It uses the principle behind a HashMap for sorting: public class NLogNBreak { public ...
1
vote
1answer
54 views

Big O Speed of Removing Duplicates from Linked List Without Buffer

The approach I'm referring to is the dual-pointer technique. Where the first pointer is a straightforward iterator and the second pointer goes through only all previous values relative to the first ...
1
vote
3answers
123 views

What's the efficiency in Big O notation of the “in” operator or obj.hasOwnProperty(prop)

Mozilla's website clearly describes hasOwnProperty() and the in operator. However, it does not give any implementation details in regards to their efficiencies. I would suspect they'd be O(1) ...
1
vote
3answers
977 views

Data structure for fast insertion/deletion with sorting

I'm desperately looking for a data structure allowing me to perform a good amount of insertions, almost as many deletions (probably same order of magnitude) and a very quick lookup of the highest (or ...

1 2