andb.online
Search
Search
Dark mode
Light mode
Reader mode
Explorer
algorithms
53 items with this tag.
Feb 22, 2026
Сложности алгоритмов (Big O)
interview
algorithms
complexity
big-o
index
Feb 22, 2026
Паттерны и шпаргалки
interview
algorithms
patterns
cheatsheet
leetcode
index
Feb 22, 2026
Математика и основы
interview
algorithms
mathematics
index
Feb 22, 2026
Структуры данных
interview
algorithms
data-structures
index
Feb 22, 2026
Алгоритмы
interview
algorithms
index
Feb 07, 2026
Сортировки
interview
algorithms
sorting
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
Feb 22, 2026
Two Pointers (Два указателя)
interview
algorithms
patterns
two-pointers
arrays
Feb 22, 2026
Sliding Window (Скользящее окно)
interview
algorithms
patterns
sliding-window
arrays
strings
Feb 22, 2026
Binary Search (Бинарный поиск)
interview
algorithms
patterns
binary-search
Feb 22, 2026
Prefix Sums (Префиксные суммы)
interview
algorithms
patterns
prefix-sums
arrays
Feb 22, 2026
Heap & Priority Queue (Куча)
interview
algorithms
patterns
heap
priority-queue
Feb 22, 2026
Backtracking (Поиск с возвратом)
interview
algorithms
patterns
backtracking
recursion
Feb 22, 2026
Dynamic Programming (Динамическое программирование)
interview
algorithms
patterns
dynamic-programming
Feb 22, 2026
Greedy Algorithms (Жадные алгоритмы)
interview
algorithms
patterns
greedy
intervals
Feb 22, 2026
Trie (Префиксное дерево)
interview
algorithms
patterns
trie
strings
Feb 22, 2026
Графы (Graphs)
interview
algorithms
patterns
graphs
bfs
dfs
Feb 22, 2026
Деревья (Trees)
interview
algorithms
patterns
trees
bst
dfs
bfs
dsa
leetcode
Feb 22, 2026
Расстояние Чебышёва
interview
algorithms
mathematics
distance
geometry
Feb 22, 2026
Логарифм
interview
algorithms
mathematics
logarithm
Feb 22, 2026
Bitwise Operations (Битовые операции)
interview
algorithms
bitwise
binary
Feb 22, 2026
Stack (Стек)
interview
algorithms
data-structures
stack
lifo
Feb 22, 2026
Queue (Очередь)
interview
algorithms
data-structures
queue
fifo
Feb 22, 2026
Linked List (Связный список)
interview
algorithms
data-structures
linked-list
two-pointers
Feb 22, 2026
Array (Массив)
interview
algorithms
data-structures
array
Feb 22, 2026
Hash Table (Хэш-таблица)
interview
algorithms
data-structures
hash-map
hash-table
Feb 22, 2026
Heap (Куча)
interview
algorithms
data-structures
heap
priority-queue
Feb 22, 2026
Deque (Двусторонняя очередь)
interview
algorithms
data-structures
deque
queue
Feb 07, 2026
Bubble Sort (Сортировка пузырьком)
interview
algorithms
sorting
bubble-sort
stable
in-place
Feb 07, 2026
Selection Sort (Сортировка выбором)
interview
algorithms
sorting
selection-sort
in-place
Feb 07, 2026
Insertion Sort (Сортировка вставками)
interview
algorithms
sorting
insertion-sort
stable
in-place
Feb 07, 2026
Shell Sort (Сортировка Шелла)
interview
algorithms
sorting
shell-sort
in-place
Feb 07, 2026
Tree Sort (Сортировка деревом)
interview
algorithms
sorting
tree-sort
bst
Feb 07, 2026
Merge Sort (Сортировка слиянием)
interview
algorithms
sorting
merge-sort
stable
divide-and-conquer
Feb 07, 2026
Quick Sort (быстрая сортировка)
interview
algorithms
sorting
quick-sort
in-place
divide-and-conquer
Feb 07, 2026
Heap Sort (Пирамидальная сортировка)
interview
algorithms
sorting
heap-sort
in-place
heap
Feb 07, 2026
Counting Sort (Сортировка подсчётом)
interview
algorithms
sorting
counting-sort
stable
non-comparison
Feb 07, 2026
Bucket Sort (Блочная сортировка / Карманная сортировка)
interview
algorithms
sorting
bucket-sort
stable
non-comparison
Feb 07, 2026
Radix Sort (Поразрядная сортировка)
interview
algorithms
sorting
radix-sort
stable
non-comparison
Feb 07, 2026
IntroSort (Introspective Sort / Интроспективная сортировка)
interview
algorithms
sorting
introsort
hybrid
in-place
Feb 07, 2026
TimSort (Гибридная сортировка)
interview
algorithms
sorting
timsort
stable
hybrid
adaptive
Feb 07, 2026
Cube Sort (Кубическая сортировка)
interview
algorithms
sorting
cube-sort
parallel
Jul 03, 2023
Вероятностные структуры данных
interview
algorithms
data-structures
probabilistic
bloom-filter
hyperloglog