A Gentle Introduction to Algorithm Complexity Analysis
1–10 of 14 posts
Re: A Gentle Introduction to Algorithm Complexity Analysis
#2Re: A Gentle Introduction to Algorithm Complexity Analysis
#3- Logarithms and binary search: https://livebook.manning.com/#!/book/grokking-algorithms/cha...
- Big O: https://livebook.manning.com/#!/book/grokking-algorithms/cha...
Re: A Gentle Introduction to Algorithm Complexity Analysis
#4Re: A Gentle Introduction to Algorithm Complexity Analysis
#5When I was a computer science undergrad, this is the one video that made algorithmic complexity stick in my head, hopefully someone else finds it as useful as I did; https://www.youtube.com/watch?v=phbu-K4tlQg
By default, O, omega and theta all refer to the worst case running time.
- O(n) means worst_case_run_time = C n
- theta(n) means C1 n
If you want to talk about something other than worst case, you usually just say it in words, like "the average complexity of this algorithm is O(n^2)".(I can't remember when someone has ever looked at "best case".)
To rephrase
- "This algorithm is O(something)" means I have an upper bound on the running time on the worst inputs.
- "This algorithm is omega(something)" means I have a lower bound on the running time on the worst inputs.
- "This algorithm is theta(something)" means I have both an upper and lower bound on the running time on the worst inputs (that differ only by a constant multiple.
In particular, a lower bound does not mean "best case" (they aren't even in the same part of the sentence).
(There's also some other detail from the video like the bit representation of string length that needs a footnote but that's much less important, I think.)
Re: A Gentle Introduction to Algorithm Complexity Analysis
#6When using a machine model, we have to reason about how the algorithm compiles and runs on that machine. For example, if we express our algorithm in a low-level language such as C, cost analysis based on a machine model that represents a von Neumanm machine is straightforward because there is an almost one-to-one mapping of statements in C to the instructions of such a machine. For higher-level languages, this becomes trickier. There may be uncertainties, for example, about the cost of automatic memory management, or the cost of dispatching in an object-oriented language. For parallel programs, cost analysis based on machine-based models even more tricky, since we have to reason about how parallel tasks of the algorithm are scheduled on the processors of the machine.
Re: A Gentle Introduction to Algorithm Complexity Analysis
#7When I was a computer science undergrad, this is the one video that made algorithmic complexity stick in my head, hopefully someone else finds it as useful as I did; https://www.youtube.com/watch?v=phbu-K4tlQg
This is a good video but it gets the definition of omega and theta wrong, or at least their definition is very non-standard. By default, O, omega and theta all refer to the worst case running time. - O(n) means worst_case_run_time = C n - theta(n) means C1 n If you want to talk about something other than worst case, you usually just say it in words, like "the average complexity of this algorithm is O(n^2)". (I can't…
It's also more nuanced than the inequality in your correction. It's a statement about limits of functions.
Re: A Gentle Introduction to Algorithm Complexity Analysis
#8When I was a computer science undergrad, this is the one video that made algorithmic complexity stick in my head, hopefully someone else finds it as useful as I did; https://www.youtube.com/watch?v=phbu-K4tlQg
This is a good video but it gets the definition of omega and theta wrong, or at least their definition is very non-standard. By default, O, omega and theta all refer to the worst case running time. - O(n) means worst_case_run_time = C n - theta(n) means C1 n If you want to talk about something other than worst case, you usually just say it in words, like "the average complexity of this algorithm is O(n^2)". (I can't…
Re: A Gentle Introduction to Algorithm Complexity Analysis
#9Earlier quoted context omitted.
This is a good video but it gets the definition of omega and theta wrong, or at least their definition is very non-standard. By default, O, omega and theta all refer to the worst case running time. - O(n) means worst_case_run_time = C n - theta(n) means C1 n If you want to talk about something other than worst case, you usually just say it in words, like "the average complexity of this algorithm is O(n^2)". (I can't…
Nice overview ;) Minor typo in theta(n): the bounds should be C1 n and C2 n.
Re: A Gentle Introduction to Algorithm Complexity Analysis
#10Earlier quoted context omitted.
This is a good video but it gets the definition of omega and theta wrong, or at least their definition is very non-standard. By default, O, omega and theta all refer to the worst case running time. - O(n) means worst_case_run_time = C n - theta(n) means C1 n If you want to talk about something other than worst case, you usually just say it in words, like "the average complexity of this algorithm is O(n^2)". (I can't…
Big-O typically refers to worst case when people discuss algorithms, but its definition has nothing to do with runtime, or even algorithms, at all. It was invented by mathematicians decades before computers existed. It's also more nuanced than the inequality in your correction. It's a statement about limits of functions.
The implicit default of "worst-case running time" (in the context of algorithm) may actually be the source of errors like the one made in the video. For what its worth, I actually think the lim sup definition is easier because its fewer things to memorize.