Solve Recurrence using Recursion Tree Method Example1

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 มี.ค. 2021
  • Solve the recurrence T(n) = 2T(n/2) +1 using Recursion Tree method.

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

  • @zarahassan6058
    @zarahassan6058 10 หลายเดือนก่อน

    Well Described.
    Huge Respect Sir🤩

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

    What a explanation

  • @basithvpbasith2461
    @basithvpbasith2461 11 หลายเดือนก่อน

    Super class sir. Thank you 💞💞

  • @md.alamintalukder3261
    @md.alamintalukder3261 ปีที่แล้ว

    thanks a lot

  • @snehas7065
    @snehas7065 6 หลายเดือนก่อน

    🎉

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

    Good class thank you✌✌

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

    What if n is an odd number?

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

      If n is odd the problem will get divided in to subproblems of size ⌊ n/2⌋ and ⌊ n/2⌋ + 1 respectively. But we can clearly conclude that problem size will be atmost ⌈n/2⌉.