Linked from
The 29 pages that link to Big O notation, each with the reason it gives.
AlgorithmRelated: It summarizes how an algorithm’s resource use scales with input size.
Asymptotic analysisRelated: It gives a standard way to bound growth while ignoring constant factors.
Time complexityRelated: It expresses an upper bound on an algorithm’s running-time growth.
QuantifierRelated: Its formal definition quantifies over constants and input-size thresholds.
Space complexityRelated: It commonly states upper bounds on an algorithm’s space requirements.
Fast Fourier transformRelated: It compares the FFT's operation growth with direct DFT evaluation.
Merge sortRelated: It expresses merge sort’s O(n log n) worst-case time growth.
Asymptotic expansionRelated: It expresses the remainder bound after truncating an expansion.
Binary search treeRelated: It expresses how tree height determines search and update costs.
Upper boundRelated: Asymptotic analysis uses upper bounds to compare algorithmic growth.
Master theoremRelated: The theorem's conclusions are commonly stated as Big O bounds.
Red–black treeRelated: It expresses the logarithmic time bounds guaranteed by red–black trees.
The Art of Computer ProgrammingRelated: The books use it to express resource bounds compactly.
Savitch's theoremRelated: O(s(n)²) states the scale of the deterministic simulation's space use.
Akra–Bazzi methodNarrower topic: The method’s conclusions are typically stated as asymptotic bounds.
Carlson's theoremRelated: Growth hypotheses are commonly stated as asymptotic bounds.
Erdős–Pósa theoremRelated: The covering bound grows on the order of k log k, not merely k.