82
votes
33answers
3k views
O(nlogn) Algorithm - Find three evenly spaced ones within binary string
I had this question on an Algorithms test yesterday, and I can't figure out the answer. It is driving me absolutely crazy, because it was worth about 40 points. I figure that mos …
-1
votes
2answers
46 views
Sorted array Big o notation
Hello
I just have a simple question, why is the big O notation of a sorted array O(log N)? It will be a sorted array.
0
votes
5answers
123 views
What is the running time of these mystery?
mystery(int A[1..n], int n) {
// pre: n is a power of 2 for i=1..n {
for i = 1...n {
A[i] = A[i] + 1;
}
if (n>1) mystery(A, n/2);
…
1
vote
8answers
192 views
complexity help..O(n^2), 0(nlog) etc
hey there could someone please help me determine the complexity?. An example given in my class was
bubble sort
int main() {
int a[10] = {10,9,8,7,6,5,4,3,2,1};
int i,j,tem …
15
votes
23answers
2k 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( …
59
votes
28answers
3k views
are there any O(1/n) algorithms?
Or anything else which is less than O(1)?
0
votes
3answers
110 views
Simple Algorithm time complexity Question
Hi,
I am working on an assignment for an intro Datamining course. I am trying to figure out the time complexity of an algorithm (see below)? Is it linear/exponential/log/quadratic …
9
votes
6answers
386 views
Is Big O(logn) log base e?
For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described b …
71
votes
23answers
7k views
Big-O for Eight Year Olds?
I'm asking more about what this means to my code. I understand the concepts mathematically, I just have a hard time wrapping my head around what they mean conceptually. For examp …
19
votes
36answers
2k views
Should we care if a prospective hire understand Big O notation?
A colleague of mine caused a long e-mail conversation by saying:
Of the probably 30+ people I’ve given a phone interview to, not a one (including people with Masters degrees in CS …
0
votes
5answers
182 views
O Notation Help
I am getting stuck with the class work we got this week and its a subject i really want to learn so for once i thought i would do the additional reading!!!!
The method is provided …
0
votes
5answers
120 views
A homework about growth rate of function
Please order the function belows by growth rate
n ^ 1.5
n ^ 0.5 + log n
n log ^ 2 n
n log ( n ^ 2 )
n log log n
n ^ 2 + log n
n log n
n
ps:
Ordering by growth rate means, as n g …
1
vote
3answers
112 views
Complexity of a given function
When I analyzed the complexity of the code segment below, I found that it is O(n/2). But while searching the internet I discovered that it is probably O(n). I'd like to know who's …
4
votes
3answers
139 views
big O homework question
I need to state the big o of the following fragment:
sum =0;
for (int i=1; i<n; i++) {
for (int j=1; j< n/i; j++) {
sum = sum +j;
}
}
I know the outer loop is O(n …
10
votes
7answers
329 views
What is O value for naive random selection from finite set?
This question on getting random values from a finite set got me thinking...
It's fairly common for people to want to retrieve X unique values from a set of Y values. For exampl …
