1
Fork 0
mirror of https://github.com/Steffo99/appunti-magistrali.git synced 2024-11-22 10:44:17 +00:00
appunti-steffo/9 - Algoritmi distribuiti/1 - Problemi algoritmici/criterio di costo logaritmico.md

14 lines
297 B
Markdown
Raw Normal View History

2023-10-29 01:31:29 +00:00
Considera la [[dimensione dell'input]] come il numero di [[bit]] richiesti per rappresentarlo.
## Esempi
$$
f(16) \underset{costo}{\longrightarrow} lg(16) = 4
$$
$$
f(128) \underset{costo}{\longrightarrow} lg(128) = 7
$$
$$
f([1, 2, 3, 4]) \underset{costo}{\longrightarrow} 1 + 2 + 2 + 3 = 8
$$