WTF-Forum

1.103.0 [f8b83e7] | 23.06.2025

4002 - Big-O

Last Update: 26.06.2025

Maturity

Basic
Scope
Flow
Cycle
To CenterBest-Case
To PeripheryWorst-Case
Big O notation is used to describe the time complexity of an algorithm. It represents the worst-case scenario of how an algorithm's performance scales with input size. Common notations include O(1) for constant time, O(n) for linear time, and O(n^2) for quadratic time. It helps analyze and compare algorithms' efficiency, focusing on the most significant factors impacting runtime, ignoring constants and lower-order terms.
WARNING: This entry is marked as experimental/in development.