big-o-notation

#cs/algorithms#cs

Big O Notation

ComplexityNameExample
O(1)ConstantHash lookup
O(log n)LogarithmicBinary search
O(n)LinearLinear scan
O(n log n)LinearithmicMerge sort
O(n²)QuadraticBubble sort

See Algorithms Overview · Sorting Algorithms · CS Concepts Hub.