Master Theorem Example

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ต.ค. 2016
  • Solve T(n) = 2T(n/2) + nlogn using the Master Theorem !
    Learn More: www.udemy.com/recurrence-rela...
    Please Subscribe !
    Leave likes and comments !
    Website: everythingcomputerscience.com/
    Related Videos:
    MASTER THEOREM Recurrence Relation : • Prove Recurrence Relat...
    MASTER THEOREM:
    • Master Theorem

ความคิดเห็น • 46

  • @lalitameena3321
    @lalitameena3321 5 ปีที่แล้ว +2

    These videos are really helpful to understand the recursion methods. Please keep on posting for other topics too in datastructure and algorithms. Thank you so much.

  • @trafalgarlaw9919
    @trafalgarlaw9919 3 ปีที่แล้ว

    Thank you for the explanation!

  • @patrickkranzpiller6400
    @patrickkranzpiller6400 5 ปีที่แล้ว +6

    Great video man. Thank you for the help!

  • @supernerd10000000000
    @supernerd10000000000 7 ปีที่แล้ว +9

    You are awesome! Thank you so much for your help. You make everything so simple and easy to read. Wish you were my teacher. Btw, you have a soothing voice ahahhaha

  • @chuaselo
    @chuaselo 7 ปีที่แล้ว +11

    I love your work man please dont ever stop !!!

  • @alibaba888
    @alibaba888 4 ปีที่แล้ว +2

    THANK YOU <3 NOW I UNDERSTOOD HOW TO USE THE MASTER THEOREM

  • @Tanessok
    @Tanessok ปีที่แล้ว

    Thanks for your explanations. It helped me :)

  • @Gollum1905
    @Gollum1905 6 ปีที่แล้ว

    1 question:

  • @TheTechnicalman
    @TheTechnicalman 7 ปีที่แล้ว +1

    Thanks, I believe number 2 if it's base of the log, need to be down ⬇

  • @subhankargoswami3521
    @subhankargoswami3521 6 ปีที่แล้ว +3

    awsome explanation

  • @kodermanishe
    @kodermanishe 5 ปีที่แล้ว +1

    thanks man a lot, greate video

  • @jaybshow1660
    @jaybshow1660 6 ปีที่แล้ว +1

    Thumbs up nice work

  • @marcus47_

    your description of case 3 converts c into k halfway through i think. ('a*f(n/b) <= k*f(n) where k < 1' should be c not k

  • @sonemanibitna3053
    @sonemanibitna3053 5 ปีที่แล้ว +2

    I appreciate you

  • @Dan-tf9kb
    @Dan-tf9kb 3 ปีที่แล้ว +2

    This guy reminds me of the episode of My Wife & Kids where Junior became a genius

  • @yashthanthratey1942
    @yashthanthratey1942 6 ปีที่แล้ว +1

    Keep it up.. 👍

  • @rahulmallah8306
    @rahulmallah8306 5 ปีที่แล้ว

    Isn't n^logba smaller that n log n? Shouldn't case three be used?

  • @darkestknight1260
    @darkestknight1260 6 ปีที่แล้ว

    If 3Tn/2+42?????

  • @sqbossh
    @sqbossh 6 ปีที่แล้ว +1

    Sir I have a feeling you have it wrong... this is CASE 3! You have to compare f(n) with n^log b a and if you compare it it is f(n) = n*log(n) and n^log b a = n ... so "n*log(n)" grows asympt. more quickly then only "n" obviously... so it's case 3 , but it fails in n*log(n) e Omega(n^1+e) because we can find e where this is not true.

  • @ejaycarandang5885
    @ejaycarandang5885 3 ปีที่แล้ว +1

    1. T(n) = 4t (n/2) + n 1g n