Re: Why does Dell hate Linux so much? Hardware and Software Linux and Unix by mickeydoodle I've just acquired a Dell laptop, it seems to hate Linux! Touch pad doesn't work properly, Wireless won't connect and it's sooo slow! Works fine with Windows! Re: Complexity of an algorithm Programming Computer Science by rohit saroha big oh notation is an upper bound for a function f(n) such that f(n)<=c(g(n)) where n>=n0 here n0,c are witnesses. and f(n) will belong to the set of g(n),if it satifies the above condition. i,hope it will help you out to solve your problem Re: Time complexity of algorithm Programming Computer Science by rype69 Big Oh denotes "fewer than or the same as" <expression> iterations. Big Omega denotes "more than …or the same as" <expression> iterations. Big Theta denotes "the same as" <expression…> iterations. Little Oh denotes "fewer than" <expression> iterations.… Re: Time complexity of algorithm Programming Computer Science by neufmartial > Big O only tells you the expected growth rate of the …, it means that the time complexity that we find using Big-Oh, Omega or Theta is not the actual execution time of… Big-Oh Notation question Programming Software Development by pandaEater I've been working on getting the Big-Oh notation for this code segment a couple days now and … can't convince myself it's right. What's the Big-Oh notation for the following code and how do you arrive… 2^n to a form where I can get the Big-Oh Re: Big-Oh Notation question Programming Software Development by arkoenig …; (2 power (n-1)) - 1 And thats your complexity or Big-Oh.Hope you understand...Cannot put it in any better way…). To see this, realize that when you're talking about big-O notation, adding or subtracting a constant, or multiplying or… Re: Big-Oh Notation question Programming Software Development by csurfer …; (2 power (n-1)) - 1 And thats your complexity or Big-Oh.Hope you understand...Cannot put it in any better way :) The Big Oh-notation Programming Computer Science by Ajantis … my final exam, and I have some issues with this Big Oh notation. Really - I've been reading about it like crazy… talking and talking... and they talk about everything except the Big Oh notation! Seriously... can someone please help me understand this thing… Re: The Big Oh-notation Programming Computer Science by Ajantis … exam is approaching, I will be exercising a little on Big-Oh today, and I will post up some loops and what… I think Big-Oh they have later. Hopefully, maybe you - or someone else - could… Big Oh notation of two non nested loops Programming Software Development by momal … answer b, I made the following program to find the big Oh. for (int i=0; i<n-1; i++) {…; } printf("%d\n", res); I have calculated the big Oh of the first loop to be Sumation of n And…loop runs 2^n-1 times the first loop, its big Oh is 2^n and adding them both they become (… Re: Big Oh notation of two non nested loops Programming Software Development by Banfa Personally I would ignore "(a Big-Oh answer will do)" and give an exact answer. You … n = log2(log2(fine)) + 1 If you really want your big O notation look at your original formula and notice you… exponential of days so O(e ^ e ^ x), remembering that Big O notation is an indication of how quickly something gets… Big-Oh algorithms Programming Computer Science by Zainab_7 Why Big-Oh is not a good scale for comparing algorithms? understanding and finding big-oh estimate for c++ Programming Software Development by superchica08 hello everyone I was wondering if anyone could explain big-oh estimate to me for c++ data structures. I do not … it. Also could anyone explain to me how to use big-oh estimate on the following problem. My prof gave this to… Re: The difference between Big-oh and theta notation Programming Computer Science by Narue >1) Do big-oh and theta both represent the worstcase for the running time? They represent whatever case you're analyzing. >2) How do I know when to use theta? Theta is when you can achieve it. It's a much stronger claim than Big O because it's a tighter bound. Finding the Big Oh for these Math.functions Programming Computer Science by Gotcha I would like to know if anyone could teach me how to solve this type of Mathematical functions: Finding the Big Oh for the following two. Thanks for any suggestions. f(n) = 2 + 4 + 8 + . . . + 2^n f(n) = n! Need help finding the Big Oh. Programming Computer Science by Gotcha Instructions: Find the Big Oh for the times of excecution of X: = x + 1. You should justify the answer: I : = N WHILE I >= 1 DO BEGIN FOR J : = 1 TO N DO X : = X + 1 I = [I/2] END Thanks for any suggestions for solving it. Re: Finding the Big Oh for these Math.functions Programming Computer Science by Rashakil Fol There are many 'big Oh's for these functions. In particular, in each case, f(n) is in O(f(n)). The difference between Big-oh and theta notation Programming Computer Science by arh … still a bit confused. Here are some questions: 1) Do big-oh and theta both represent the worstcase for the running time… Help Understanding big-oh Programming Software Development by santiaguinho15 … time understanding what "n" is when talking about big-oh. I know "n" is the data size but… Re: Help Understanding big-oh Programming Software Development by kvass … type. Each of these estimations can be denoted by "Big Oh" notation: [b]O(1)[/b] means that the algorithm… Help with Big-Oh Programming Software Development by Ty88 … by midnight tonight :/ I'm really struggling with the all Big-Oh notation thing and I could really use your help. I… algorithm Big Oh Programming Computer Science by Zainab_7 … Please : Analyze the running time of the following algorithm using Big-Oh notation maxerea =0; maxpt1 =maxpt2 = maxpt3 =0; for(i =1… Re: Big Oh estimates Programming Computer Science by invisal I have never been a fan of Big Oh estimation and I am pretty poor with it. Correct me if I am wrong. [B]1)[/B] The execution time for the first exercise would be: L(n) + L(n/2) + L(n/4) + L(n/8) + .... + L(n/n) approximately equal to 2n Re: Big Oh estimates Programming Computer Science by AuburnMathTutor ^ Right you are, invisal. The big-Oh time complexity of (1) is in fact O(n). It would be O(nlogn) if it were the following: [code] m := n while n > 0 do L(m); n := n / 2 [/code] And the answers for (2) and (3) are right on the money. Good job! have a problem in Big o analysis Programming Software Development by csc385 … following mathematical functions state the equivalent Big-Oh function, keeping in mind the general rules for using Big-Oh as described in the textbook… Homework help! Big-O notation... Programming Computer Science by DonnieT2 …Here is the assignment: Assignment 1 1. Give a big-Oh notation, in terms of n and m, of the …run m times. Since there is no nested loop the Big O notation is O(n + m). C. n^2…term n^2 is the fastest growing one meaning the Big O notation is O(n^2). D. ? … term 3n^3 is the fastest growing one meaning the Big O notation is O(n^3). G. ? (Stumped… Understanding Big O Notation Programming Computer Science by beaute Hello, I'm trying to understand Big O notation, specifically to understand how …O(G(N)) reads that F of N is Big O of G of N[/code] Then my lecture…[/QUOTE] I understand that there are different examples of Big Oh's: O(1) for constant complexity O(N) for…My professor went ahead and gave me examples of Big O based on F(N), which I also don… time complexity Programming Software Development by dev90 … time complexiy of the following line of code using 'Big-O' or 'Big-OH' notation??? 1. scanf("%d",&n); 2… Re: URGENT Help needed for big O Programming Computer Science by AuburnMathTutor Well, technically, that code is Big-Oh of N^2 since T(N) is certainly bounded by … Re: Algorithms Big-O notation Programming Computer Science by sepp2k Do you think it's true or false? What have you trieed to prove or disprove it? What's the definition of big-Oh - how would `2^(2^n)` need to relate to `2^n` for `2^(2^n)` to be in `O(2^n)`?