O(1)
Constant time complexity, the operation takes the same time regardless of input size
O(n)
Linear time complexity; the operation time grows linearly with the input size
O(logn)
Logarithmic time complexity; the operation time grows logarithmically with the input size
O(n^2)
Quadratic time complexity; the operation time grows quadratically with the input size