The Big-O notation is used to represent asymptotic upper bounds. It describes relevant time or space complexity of algorithms. Big-O analysis provides a coarse and simplified estimate of a problem difficulty.
1
vote
1answer
43 views
Bit cost of bit shift
I updated a question I asked before with this but as the original question was answered I'm guessing I should ask it seperately in a new question.
Take for example the simple multiplication ...
0
votes
1answer
26 views
Practically solving factorial-complexity problems ( scheduler )
Given i have this O(n!) scheduler-problem:
There are 10 Tasks with different durations, that I want to schedule during a workweek of 5 days
Each day has 8 workhours, seperated in 15min. slots ( 1 ...
4
votes
1answer
50 views
regex - What is the complexity of this regular expression for primes detect?
This line of ruby code detects prime numbers (awesome!).
("1" * n) !~ /^1?$|^(11+?)\1+$/ # where n is a positive integer
The detail is explained in this blog post ...
-2
votes
3answers
88 views
Big O notation for (n^2) [closed]
example 1
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
System.out.println(count++);
}
}
example 2
for (int i = 0; i < n * n; i++) {
...
0
votes
4answers
65 views
Determining Big O for a recursive method
I am trying to figure out how to determine Big O notation for recursive methods . I realise that is probably the same way as with a iterative method, but im not sure about this.
I wrote this simple ...
-3
votes
0answers
50 views
Function f(n) neither in O(n) nor Ω(n) [closed]
I just got into the Big-Oh and Big-Omega notations. I understand both concepts but I am having trouble with 1 question where I need to find a function f(n) that is neither in O(n) nor in Ω(n). I am ...
3
votes
2answers
63 views
How does heapsort's big-O runtime relate to the number of comparisons made?
I have read quite a bit on big-O notation and I have a basic understanding. This is a specific question that I hope will help me understand it better.
If I have and array of 100 integers (no ...
0
votes
0answers
39 views
Having issues with my Big Oh
Hello was trying to work out my Big Oh but i'm not sure whats right or not.
My function is:
F(n)=((n+1)logn+log(n+3)-(n+1)+2)/n
I work out:
(log(n^(n+1))+log(n+3)-n+1)/n
...
1
vote
1answer
61 views
Big-O of a function taking on a negative value? [closed]
Hello I was wondering what would be my Big-Oh for this function: f(n) = 7n – 3nlogn+100000. I checked other similar questions. Some say that since nlogn is -3 we can ignore it and as such the result ...
6
votes
5answers
189 views
Big O - O(log(n)) code example [duplicate]
Like the Big O notation "O(1)" can describe following code:
O(1):
for (int i = 0; i < 10; i++) {
// do stuff
a[i] = INT;
}
O(n):
for (int i = 0; i < n; i++) {
...
0
votes
2answers
29 views
Is the big o for the following O(n^2*log(n)) or O(n^3*log(n))
Is the big o for the following O(n^2*log(n)) or O(n^3*log(n))?
for (int i=0;i<n;i++){
for(int j=0;j<i;j++){
for(int k=0;k<n;k*=2){
System.out.print("test");
}
}
...
0
votes
2answers
28 views
Confusion around Big-O with natural logs [closed]
I have a little list descending into faster asymptotic growth:
O(1)
O(log log n)
O(log n)
O(n^x), where 0 <= x <= 1
O(n)
O(n log n)
O(n^x), where x>1
O(x^n)
O(n!)
Im just curious as to ...
1
vote
3answers
84 views
Big-O simple explaining and use in java [duplicate]
I really can't figure out what "Big-O" is and how to use it in practice, so i hope someone could give me a simple explaining and maybe a little programming example in java.
I have the following ...
2
votes
2answers
44 views
Optimizing Mergesort in Java for O(Nlog(N))
For an algorithms class, my partner and I were required to program Mergesort in Java. We have completed the algorithm, and it functions properly. However, in testing the algorithm for a variety of ...
4
votes
2answers
41 views
Big O complexity of loop with two independent inner loops
I have a function that depends on three variables, T, N, and M. The loop is the following:
for each t from 0 to T {
for each n from 0 to N {
process(n,t);
}
for each m from 0 to ...
1
vote
4answers
161 views
Why does this O(N^2) algorithm run so quickly?
This algorithm is O(n2), however it runs in less than a second. Why is it so quick?
public class ScalabilityTest {
public static void main(String[] args) {
long oldTime = ...
1
vote
1answer
35 views
The time complexity of the leader-follower algorithm?
I'm trying to understand the complexity of the Leader-Follower algorithm. Here is the worst case scenario of the algorithm:
public class ScalabilityTest {
public static void main(String[] args) {
...
0
votes
1answer
42 views
Time required to list off keys in a B-tree in sorted order?
I want to sort a long list, so I put all the elements into a B-tree (each element takes O(log n) time to insert).
Once sorted, I need to read back the elements.
Do you know how it is done how long ...
0
votes
1answer
65 views
What is the difference or seperates O(log(n)) and O(n)? [duplicate]
This is the code I have been given but I cannot decide whether it is O(log(n)) or O(n).
int i=n;
while (i > 0) {
i/=2;
}
5
votes
2answers
84 views
Why is insertion sort Θ(n^2) in the average case?
Insertion sort has a runtime that is Ω(n) (when the input is sorted) and O(n2) (when the input is reverse sorted). On average, it runs in Θ(n2) time.
Why is this? Why isn't the average ...
2
votes
1answer
99 views
Big O of clojure library functions
Can anyone point me to a resource that lists the Big-O complexity of basic clojure library functions such as conj, cons, etc.? I know that Big-O would vary depending on the type of the input, but ...
0
votes
1answer
42 views
complexity -big O notation , theta and omega
can anyone help me verifying the following complexities:
10^12 = O(1)?
2^(n+3) + log(n) = O(2^n)?
f(n) = Omega(n) and f(n) = theta(n) <=> f(n) = O(n)
thanks
0
votes
2answers
34 views
complexity of binary search if split is 1/3 to 2/3 [closed]
What is the BigOh complexity of the binary search if each split was 1/3 to 2/3 instead of 1/2 to 1/2?
Some explanation of how the BigOh complexity is derived would be helpful too. Thanks
This ...
3
votes
2answers
32 views
Trouble Finding Big O Time for this loop
I'm trying to find the Big O running time for the following code snippet:
for( i = 0; i < n * n; i++ )
for( j = 0; j < i; j++ )
k++;
I'm not sure if it would be O(n^3) because of ...
0
votes
2answers
62 views
Complexity of this algorithm
So I have an algorithm that goes like this:
for i=0:360
C...
for j=0:a_j[i]
C...
for t=0:a_t[i][j]
C...
end
end
end
So I have three loops but both inner loops depend on the ...
2
votes
4answers
88 views
calculating complexity of sorting
std::sort performs approximately N*log2(N) (where N is distance) comparisons of elements(source - http://www.cplusplus.com/), so its complexity is N*log2(N).
Please, help me to calculate complexity ...
1
vote
1answer
37 views
Time Complexity and Experimental Results
I have two algorithms A and B, that work on Logical Graphs, and I would like to compare their efficiency in term of time.
When I calculated the time complexity for both algorithms I found:
Time ...
1
vote
3answers
75 views
how does IF affect complexity?
Let's say we have an array of 1.000.000 elements and we go through all of them to check something simple, for example if the first character is "A". From my (very little) understanding, the complexity ...
-1
votes
1answer
46 views
Time Complexity of bit operations
As a result of some original research and the need to develope tools for it I've come up with some new and I hope better/quicker ways of performing certain mathematical operations. Atm I'm working on ...
0
votes
1answer
83 views
Collatz conjecture: loose upper/lower bounds? [closed]
This is a problem from my textbook. The Collatz conjecture (or the "3n + 1" problem) works as follows (given some natural number n):
while n > 1 do
if n is even then
n = n / 2
...
0
votes
1answer
43 views
complexity for nested loops ratio 1/2 [duplicate]
I am trying to figure out the complexity of a for loop using Big O notation. I have done this before in my other classes, but this one is more rigorous than the others because it is on the actual ...
0
votes
1answer
27 views
Given a set of intervals, why is the average case for computing pred[i] theta(n logn)?
So I was reading my notes and I don't really get this part:
Define f, s as the starting and finishing time of an interval.
Sort all intervals by finish time.
So suppose we have a set of intervals ...
3
votes
3answers
76 views
Time complexity of creating a minimal spanning tree if the number of edges is known
Suppose that the number of edges of a connected graph is known and the weight of each edge is distinct, would it possible to create a minimal spanning tree in linear time?
To do this we must look at ...
1
vote
1answer
41 views
At What Depth Does The Search of An Object Literal Become Slower Than O(1)?
Code:
var PhoneNumbers = {
"J Smith": 7125551212,
"A Johnson": 4023331212
}
alert(PhoneNumbers["J Smith"]); // 7125551212
The speed of this lookup is O(1). At What depth does the speed ...
0
votes
0answers
15 views
Finding the efficiency of a section of code or algorithm [duplicate]
Given an algorithm or section of code, how can I determine its efficiency i.e. big o notation?
I can understand a little about these but dont know how it is possible to look at a given piece of code ...
3
votes
1answer
115 views
Asymptotic complexity of printf
Assuming that I'm printing a string, as follows:
printf("%s", s);
What can we assume the asymptotic complexity of this function is?
Is it O(n) where n is strlen(s) - it's length? Or is it somehow ...
0
votes
1answer
33 views
Improve efficiency of modules
I am running the loop in this method for around 1 million times but it is taking a lot of time maybe due O(n^2) , so is there any way to improve these two modules :-
def genIndexList(length,ID):
...
3
votes
2answers
130 views
Trying to prove the complexity of binary search is O(log(n))
I'm trying to proof Complexity for Binary search. In Wikipedia says, that worst case scenario is log(n). This means:
If I have array with 16 elements, log(16) is 4. I should have max 4 calls to find ...
-1
votes
3answers
37 views
Is there a way to tell whether a subroutine has runtime log(n)?
Usually the rule is that if there is a loop of 1 to n elements then the complexity is O(n), and further nested loops are n x O(n). However, when do we say if a subroutine has complexity O(log n)?
2
votes
2answers
58 views
What's the Big-Oh for nested loops i=0..n-2, j=i+1..n-1?
Given the following code:
for (int i = 0; i < n-1; ++i)
{
for (int j = i+1; j < n; ++j)
{
// Do work.
}
}
What is the Big-Oh value for it (over n)? I'm thinking it's ...
3
votes
2answers
119 views
Complexity of a sortBy in Haskell
I came up with an idea to solve another SO question and am hoping for some help with determining the function's complexity since I'm not too knowledgeable about that. Would I be correct in guessing ...
0
votes
3answers
69 views
Proving Big-O Sum Rule?
I am unsure how to formally prove the Big O Rule of Sums, i.e.:
f1(n) + f2(n) is O(max(g1(n)),g2(n))
So far, I have supposed the following in my effort:
Let there be two constants c1 and c2 such ...
5
votes
2answers
86 views
Complexity for nested loops dividing by 2
I am trying to figure out the complexity of a for loop using Big O notation. I have done this before in my other classes, but this one is more rigorous than the others because it is on the actual ...
3
votes
2answers
69 views
complexity for nested loops
I am trying to figure out the complexity of a for loop using Big O notation. I have done this before in my other classes, but this one is more rigorous than the others because it is on the actual ...
0
votes
1answer
51 views
Complexity of Algorithm: log(x^2 + x^3) = O(?)
While I understand the concept of both complexity of algorithms and logarithmic complexity in programming, I do not know how to determine the complexity of a logarithm that includes variables of ...
0
votes
1answer
23 views
Polynomial greatness in the Master-Theorem
given the equation T(n)=sqrt(2)T(n/2)+log(n). The solution points to case 1 of the M.T. with a complexity class of O(sqrt(n)). However after my understanding log(n) is polynomial greater then sqrt(n). ...
-2
votes
1answer
35 views
Big Omega notation [closed]
I have the following question and I couldn't figure out the answer. Either the question is wrong or I am a bit slow today. Here's the question:
f = Ω(g) means _____.
a) f = Ω(g(n))
b) g ...
0
votes
1answer
34 views
What's is the time complexity in this code?
begin
Input: n (pos. Integer)
Output: y (pos. Integer)
Other: x, z (pos. Integer)
y := 0;
x :=0;
while x < n do
...
-1
votes
3answers
35 views
What is the Big O for the difference of two sorted lists
Two SETS (Q, R) are stored in sorted lists.
What is the Big O of the difference? (Q - R)
-2
votes
1answer
81 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) = ...





