Complejidad temporal de un algoritmo: ¿es importante establecer la base del logaritmo?


Respuestas:


63

Depende de dónde esté el logaritmo. Si es solo un factor, entonces no hace la diferencia, porque big-O o θ permite multiplicar por cualquier constante.

Si toma O(2logn) entonces la base es importante. En la base 2 tendrías solo O(n) , en la base 10 se trata de O(n0.3010) .


55
Supongo que esto solo va a llegar a algo así como . No veo ninguna razón para expresar un número como2clogbn enlugar den-to-the-whatever-it-is (excepto tal vez como una etapa intermedia de un cálculo). 2logn2clogbnn
David Richerby

77
+1 para "factores constantes importantes en exponentes"
trognanders

50

Debido a que la notación asintótica es ajena a los factores constantes, y cualquiera de los dos logaritmos difiere en un factor constante, la base no hace ninguna diferencia: logan=Θ(logbn) para todo a,b>1 . Por lo tanto, no es necesario especificar la base de un logaritmo cuando se utiliza la notación asintótica.


13
Prefiero ver lugar de ==
Nayuki

16
Me temo que la notación estándar usa . =
Yuval Filmus

44
@YuvalFilmus La notación estándar es engañosa, completamente diferente al estándar en cualquier otro lugar y hace que la complejidad algorítmica parezca completamente ajena a cosas bastante similares. "Es la notación estándar" nunca debería ser una razón para favorecer una mala solución en lugar de una mejor, igualmente clara. (El significado del símbolo generalmente es claro por el contexto, de todos modos.)
wizzwizz4

77
@ wizzwizz4 La práctica común es una excelente razón. Promueve la comunicación eficiente. Esa es la razón por la que todos soportamos las peculiaridades de la ortografía en inglés.
Yuval Filmus

3
A veces, simplemente tiene demasiadas cosas para ser más claras que log a n = Θ ( log b n ) . nloganΘ(nlogbn)logan=Θ(logbn)
JiK

15

Como logxy=1logyx ylogxy=logzylogzx , entonces loganlogbn=lognblogna=logab. As logab is positive constant (for all a,b>1), so logan=Θ(logbn).


8

In most cases, it's safe to drop the base of the logarithm because, as other answers have pointed out, the change-of-basis formula for logarithms means that all logarithms are constant multiples of one another.

There are some cases where this isn't safe to do. For example, @gnasher729 has pointed out that if you have a logarithm in an exponent, then the logarithmic base is indeed significant.

I wanted to point out another case where the base of the logarithm is significant, and that's cases where the base of the logarithm depends directly on a parameter specified as input to the problem. For example, the radix sort algorithm works by writing out numbers in some base b, decomposing the input numbers into their base-b digits, then using counting sort to sort those numbers one digit at a time. The work done per round is then Θ(n+b) and there are roughly logbU rounds (where U is the maximum input integer), so the total runtime is O((n+b)logbU). For any fixed integer b this simplifies to O(nlogU). However, what happens if b isn't a constant? A clever technique is to pick b=n, in which case the runtime simplifies to O(n+lognU). Since lognU = logUlogn, the overall expression simplifies to O(nlogUlogn). Notice that, in this case, the base of the logarithm is indeed significant because it isn't a constant with respect to the input size. There are other algorithms that have similar runtimes (an old analysis of disjoint-set forests ended up with a term of logm/2+2 somewhere, for example), in which case dropping the log base would interfere with the runtime analysis.

Another case in which the log base matters is one in which there's some externally-tunable parameter to the algorithm that control the logarithmic base. A great example of this is the B-tree, which requires some external parameter b. The height of a B-tree of order b is Θ(logbn), where the base of the logarithm is significant in that b is not a constant.

To summarize, in the case where you have a logarithm with a constant base, you can usually (subject to exceptions like what @gnasher729 has pointed out) drop the base of the logarithm. But when the base of the logarithm depends on some parameter to the algorithm, it's usually not safe to do so.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.