recherche

Maison  >  Questions et réponses  >  le corps du texte

c++ - 算法导论里用主方法计算时间复杂度的题

递归式如下:T(n)=2T(n/2)+nlgn
用主方法求解T(n)。
没找到确切答案,所以来看看有没有大神可以解出来的。
大家可以再算法导论第三版P95找到这个问题。

怪我咯怪我咯2772 Il y a quelques jours458

répondre à tous(1)je répondrai

  • 巴扎黑

    巴扎黑2017-04-17 15:22:26

    $$a = 2, b = 2, f(n) = nlogn$$
    $$因为 f(n) ∈ Θ(nlogn), k=1 可以用 case 2$$
    $$所以 T(n) = Θ(nlog^2n)$$

    参考 https://en.wikipedia.org/wiki...

    répondre
    0
  • Annulerrépondre