1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Algorithm Efficiency
_______ is expressed in terms of CPU time.
The analysis of algorithms
________ involves categorizing an algorithm in terms of efficiency.
Time complexity
CPU time
Space complexity
memory space
Growth functions
A _________ shows the relationship between the size of the problem (n) and the value optimized (time). The main focus is CPU time.
Asymptotic Complexity
______ is based on the dominant term of the growth function. The term that increases the most
quickly as n increases. t(n) = 15n^2 + 45n
Big-O Notation
The coefficients and the lower-order terms become increasingly less relevant as n increases.