andb.online
Search
Search
Dark mode
Light mode
Reader mode
Explorer
complexity
12 items with this tag.
Feb 22, 2026
Сложности алгоритмов (Big O)
interview
algorithms
complexity
big-o
index
Feb 22, 2026
Асимптотический анализ — практика
interview
algorithms
complexity
big-o
practice
Feb 22, 2026
O(1) — Константная сложность
interview
algorithms
complexity
big-o
o-1
constant
Feb 22, 2026
O(log n) — Логарифмическая сложность
interview
algorithms
complexity
big-o
o-log-n
logarithmic
Feb 22, 2026
O(√n) — Корневая сложность
interview
algorithms
complexity
big-o
o-sqrt-n
Feb 22, 2026
O(n) — Линейная сложность
interview
algorithms
complexity
big-o
o-n
linear
Feb 22, 2026
O(n log n) — Линейно-логарифмическая сложность
interview
algorithms
complexity
big-o
o-n-log-n
sorting
Feb 22, 2026
O(n²) — Квадратичная сложность
interview
algorithms
complexity
big-o
o-n2
quadratic
Feb 22, 2026
O(n³) — Кубическая сложность
interview
algorithms
complexity
big-o
o-n3
cubic
Feb 22, 2026
O(n^k) — Полиномиальная сложность
interview
algorithms
complexity
big-o
o-n-k
polynomial
Feb 22, 2026
O(2ⁿ) — Экспоненциальная сложность
interview
algorithms
complexity
big-o
o-2n
exponential
Feb 22, 2026
O(n!) — Факториальная сложность
interview
algorithms
complexity
big-o
o-factorial