2.5 Root function (Recurrence Relation)

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ธ.ค. 2024

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

  • @dhruvpandya118
    @dhruvpandya118 4 ปีที่แล้ว +14

    one of the best teacher ever. My professor didn't explain this

  • @himeshmishra5186
    @himeshmishra5186 6 ปีที่แล้ว +13

    Sir thanks a ton for the free help you are giving on TH-cam. Sir the way u have teach, thanks word will we too small for giving in return. Hope sir you will also upload your precious leactures on different subjects of Computer Science.

  • @lesterp79
    @lesterp79 6 ปีที่แล้ว +74

    Professor, first of all, thank you so much for your videos. Now, I have a question, without having to introduce the "m" artifice, can't we just say that, when we reach our base case:
    T(n^(1/2^k)) = T(2)
    n^(1/2^k) = 2
    n = 2^(2^k) // elevating both sides to ^(2^k)
    log n = (2^k)
    log log n = k
    Thanks again!!!

    • @lesterp79
      @lesterp79 6 ปีที่แล้ว +4

      @@abdul_bari Thank you very much for your prompt response. You are very kind.

    • @NANDANKUMAR-ps3nw
      @NANDANKUMAR-ps3nw 5 ปีที่แล้ว +4

      @@abdul_bari how to use masters theorm that sir has discussed in the previous video to find the relation of root function

    • @NANDANKUMAR-ps3nw
      @NANDANKUMAR-ps3nw 5 ปีที่แล้ว +3

      how to use masters theorm that sir has discussed in the previous video to find the relation of root function

    • @yousify
      @yousify 4 ปีที่แล้ว +1

      @@NANDANKUMAR-ps3nw I don't think it is possible to be applied here since b=1 and master theorem restrict that b is strictly greater than 1.

    • @vaibhaves
      @vaibhaves 4 ปีที่แล้ว

      how does finding the value of k lead to the time complexity?

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

    Thank you, Mr. Abdul Bari, for such wonderful explanations ❤❤

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

    Thank you Sir. All the way at UBC in Canada. These profs are nowhere near you Sir.

  • @swapniljadhav8200
    @swapniljadhav8200 6 ปีที่แล้ว +38

    Thank you so much Sir. You are making algorithms easy to learn. Can you please explain, how can we use Master's theorem in case of root functions?

    • @nikhil_somani
      @nikhil_somani 3 ปีที่แล้ว +37

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

    • @trishalaswain6744
      @trishalaswain6744 3 ปีที่แล้ว +5

      @@nikhil_somani This helped a lot!! Thank you

    • @study-me1oe
      @study-me1oe 2 ปีที่แล้ว

      @@nikhil_somani what is the s(m) here?

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

      @@study-me1oe just like variable t(m) we use

    • @indicgamer2907
      @indicgamer2907 2 ปีที่แล้ว

      @@nikhil_somani how did you get b=2?

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

    one stop solution for algorithm.

  • @mr.r1712
    @mr.r1712 4 ปีที่แล้ว +1

    Thank you Bari Saab, I will now pass university :) Jazaakamullah ahsanal jazaa

  • @ashutoshdixit2806
    @ashutoshdixit2806 4 ปีที่แล้ว +1

    last video of time complexity
    😊 Legendary work

  • @premajayakumar5080
    @premajayakumar5080 9 หลายเดือนก่อน

    Sir, you are different level..... Speechless.....

  • @nikhil_somani
    @nikhil_somani 3 ปีที่แล้ว +24

    @all solving using master theorem
    Take n = 2 power m
    Then
    We have t(2 p m) = t(2 p (m/2)) + 1
    Now again let s(m) = t(2pm)
    Then we can write s(m) = s(m/2) + 1
    So case 2 we have
    Answer as log m
    But we need in terms of n so we have
    n = 2 p m thus m = log n base 2
    Replace m now
    Answer log log n
    Solved using master theorem

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

      @@mostafaom4266
      Here is the explanation again actually i forgot () there in power for m/2 read here
      When you assume n as 2 power m
      Then expression become
      T(2pm) = T(2p (m/2)) +1
      Now you assume s(d) = t(2pm)
      If you just put d/2 you will get s(d/2)
      Then s(d/2) will be t(2p(m/2)) right.
      Then its solved
      S(d) = s(d/2) + 1

    • @temptemp573
      @temptemp573 14 วันที่ผ่านมา +1

      ​​​​@@nikhil_somani
      How assuming s(d) = t(2pm) implied t(2p(m/2)) = s(d/2) ??? It only implies t(2p(m/2)) = s(dp(1/2)).
      You said just put d/2, so s(d/2) will be equal to t((2pm)/2) not equal to t(2p(m/2)).

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

    It would have been even more great, if he had explained how to apply master theorem of division for root function.
    As I see, b=√n, a=1, k=0, p=0( after comparing above root function with the master theorem of division)
    It fell under case-ll with p>-1
    So the required time complexity= Θ(log n) for the root function which is different from the actual result(Θ(log log n)).

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

      we need to take n as 2^m and then solve it T(n)=T(2^m) , by again taking T(2^m) = S(m)

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

      @@preetikhurana1337
      T(n) = T(√n) + 1
      Let n = 2ᵐ, then T(n) = T(√n) + 1 becomes T(2ᵐ) = T(2ᵐ/²) + 1
      Solving for T(2ᵐ) = T(2ᵐ/²) + 1,
      Let T(2ᵐ) = S(m)
      So we have S(m) = S(√m) + 1
      We have a = 1, b = 2 and f(n) = θ ( 1 ) = θ ( mᵏ log ᵖ m) where k = 0, p = 0
      Using Master's Theorem we have :
      log a(base b) = log 1 = 0 log a(base b) = k since k = 0, so we have case 2:
      p = 0, p > -1 (so this is sub case 1)
      S(m) = θ ( mᵏ log ᵖ ⁺ ¹ m) = θ ( m⁰ log ⁰ ⁺ ¹ m) = θ ( log m) . . . ( i )
      since n = 2ᵐ => m = log n( base 2) . . . ( ii )
      Substituting ( ii ) in ( i ) we have:
      S(m) = θ ( log log n )
      Since S ( m ) = T(2ᵐ) and n = 2ᵐ therefore we have:
      T(n) = θ ( log log n )
      Is this logically correct? Feels like doing the same problem twice.

    • @saa6390
      @saa6390 8 หลายเดือนก่อน

      ​@@giantspacemonstr you have done nearly everything Right, just a mistake there...
      when you assumed, T(2^m) = S(m), then the equation will become -> S(m) = S(m/2) + 1... which leads to a=1 & b=2 and hence log a(base b)=0...
      As you have written, there would be a=1 & b=1 and hence log a(base b) will not be defined... Since base could not be 1 in a log expression... And that's why also in master's theorem, we have restriction on b as to be strictly greater than 1...

    • @giantspacemonstr
      @giantspacemonstr 8 หลายเดือนก่อน

      @@saa6390 right, I've edited the post. And good insight into why b is strictly greater than 1. Thanks.

  • @林柏儒-g3w
    @林柏儒-g3w 3 ปีที่แล้ว +3

    Thank you so much, you saved my algorithm hand writing homework.

  • @suryateja2230
    @suryateja2230 5 ปีที่แล้ว +11

    Respected sir,
    How do we apply master's theorem for dividing functions on the root function's recursion relationship to get the time complexity?

    • @raunakmitra7868
      @raunakmitra7868 4 ปีที่แล้ว +1

      You have to convert the given recurrence relation in such a way that it resembles any recurrence relation of Divide and Conquer Algorithm very closely. Then, you can compare the values of a, b and eventually you'll get the time complexity.

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

      @@raunakmitra7868 How can we convert a non-linear function of n i.e root(n) into linear function of n. Can you elaborate?

    • @nikhil_somani
      @nikhil_somani 3 ปีที่แล้ว +11

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

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

      @@nikhil_somani genius 👏

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

      @@nikhil_somani Thank you so much for the explanation

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

    thank you so much for deeply explaining the recurrence relations, I am not going to memorize the formulas but derive them according to the code.

  • @kushanksingh3640
    @kushanksingh3640 4 ปีที่แล้ว +12

    Master's Theorem cannot be applied on this question, as b is not greater than 1.

    • @shivamdubey426
      @shivamdubey426 4 ปีที่แล้ว

      Here, b=sqrt(n).........which is greater than 1. ;-)

  • @g.abhisekbunty1827
    @g.abhisekbunty1827 6 ปีที่แล้ว +6

    Can anyone please explain why why n=2^m and not n = 2 as the boundary condition for the function is n = 2?

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

    Thank you Abdul - all of your videos are priceless! you're a legend. Thank you for helping to improve

  • @rafikhankhadem9445
    @rafikhankhadem9445 4 ปีที่แล้ว +5

    Can anyone tell/show me what would be the recursion tree for this relation please? TIA

  • @hill-ar-ious
    @hill-ar-ious 5 ปีที่แล้ว +9

    We cannot apply Master's theorem for dividing function for root functions since, b=1 and condition for Master's theorem is b>1.

    • @harennagdewani6503
      @harennagdewani6503 4 ปีที่แล้ว

      more like b= root(n) and not a constant that's why we cannot I guess.

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

  • @padmasrichintada
    @padmasrichintada 5 หลายเดือนก่อน

    Why should we assume that n is to be in powers of 2?? 2:25

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

    Sir a small request on this video atlast you said it can be solved using master theorem of dividing function but I am not able to figure out how to solve this using master theorem of dividing function. I have seen dividing function video but I am unable to apply those formulas here.

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

    Sir, You are really great ❤️..Your lectures are outstanding ❤️.. Many many thank you Sir..🙏🙏

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

    How did you calculate the value of 'm' ?

  • @Pankajkumar-dy9ef
    @Pankajkumar-dy9ef 6 ปีที่แล้ว +8

    Legendary work!!😊

  • @santosh.s8693
    @santosh.s8693 10 หลายเดือนก่อน

    this is the most simplest solution that you can find!!

  • @subramaniyanvg6367
    @subramaniyanvg6367 4 ปีที่แล้ว

    Sir I am back again on track. Today I finished this video wonderful explanation.

  • @Eduardo-ow8mo
    @Eduardo-ow8mo 3 ปีที่แล้ว

    At the end (minute 5:00) you got the value of K, not N, so, why are you treating K as N?
    And, why are you using Thetha instead of Big O?

    • @urbancoder96
      @urbancoder96 2 ปีที่แล้ว

      I have the same question. How is the value of k relating to the theta bound for n

  • @sivachokkalingam778
    @sivachokkalingam778 3 ปีที่แล้ว +4

    Thanks for the lecture sir..
    In the problem, why don't we consider n_power_1/2k = 2
    Which makes, n= 2²power k
    could anyone pls solve it or find any wrong in it !!??

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

      You can solve with that also
      n = 2(²pk)
      logn=2pk
      loglogn=k
      Same answer
      Nice catch btw🤘

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

    if you have assumed n^(1/2^k) = 2 [as, after k steps, T(n) should be 1 i.e., n^(1/2^k)= 2 ] then final result T(n) would be 1 +(1/2)*log(base 2) n instead of 1 +loglog(base 2) n,,,but maybe both the orders are nearly equal

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

    sir master theorem can not be applied to this question because b is not greater than 1

  • @notifyvaccine7107
    @notifyvaccine7107 2 ปีที่แล้ว

    This is a huge effort made by you. you explained everything very clearly.
    I have one problem for that I am looking solution. please help me with this.

  • @brayaon
    @brayaon 5 ปีที่แล้ว +3

    why did you assume _n = 2^m_? I didn't understand that part.

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

      Because sqrt(n) in the time function needs to be an integer. If you didn't make that assumption you could have something like T(sqrt(5)) which is not right.

  • @Nova-Rift
    @Nova-Rift 4 ปีที่แล้ว +1

    You rock! All your videos are great!

  • @ayushrajput6284
    @ayushrajput6284 5 ปีที่แล้ว +3

    How to apply master's theorem on this?

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

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

    can someone please explain how we can use masters dividing fnc theorem on this root fnc as sir mentioned at the end?

  • @irfaanjamarussadiq5500
    @irfaanjamarussadiq5500 4 ปีที่แล้ว

    How would you make the recurrence tree for this problem?

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

    Can somebody please explain why are we assuming n is in the powers of 2? (Why we are leting n = 2^m?)

  • @RohitRameshStrikesAgain
    @RohitRameshStrikesAgain 6 ปีที่แล้ว +4

    Really appreciate your effort, sir! Thanks a ton!

  • @navalkumarshukla9447
    @navalkumarshukla9447 4 ปีที่แล้ว +1

    Sir, how could we directly apply Master's Theorem in this case, I mean what what's gonna be the value of a,b,n and p for that?

    • @csgeek2321
      @csgeek2321 4 ปีที่แล้ว +3

      n^(1/2)=(n/b)
      b=3/2
      a=1
      log a base b =0
      k=0
      p=0
      log a base b = k and p>-1 n^k log^(p+1)n
      but you get O(logn) and not loglogn. Wondering if someone knows the correct way to do it

    • @sajalagrawal1430
      @sajalagrawal1430 4 ปีที่แล้ว

      @@csgeek2321 no not replace by n/b do by n=2powm
      Then
      T(2powm)=t(2powm/2)+1
      Then
      S(k)=s(k/2)+1 then solve my master theorem and replace k b

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

  • @ahmadkhaled-c7k
    @ahmadkhaled-c7k ปีที่แล้ว

    you are the best man , thank you and keeps on

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

    Sir diving function se kese hoga
    log base 1 of 1 is not defineed

  • @rahuljindal3683
    @rahuljindal3683 4 ปีที่แล้ว

    Sir, u said that we can use recurrence relation of dividing to calculate time complexity for root functions, but we haven't consider and power of n in formula of master theorem for dividing. We just a, b, k....??

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

  • @himanshurawatt
    @himanshurawatt 2 ปีที่แล้ว

    wow, definitely sublime explanation!

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

    Sir, Thanks a lot. I have a question. Could the result be theta(loglogn)? Does the result have to include 2?

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

      By default log will have base 2 in computer science. So mentioning 2 is optional.

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

      Thank you!

  • @Han-ve8uh
    @Han-ve8uh 4 ปีที่แล้ว

    Why is base case n=2? I understand rooting n=1 will be infinite loop. So isn't any n >1 fine to be base case?

  • @adityagoel123able
    @adityagoel123able 4 ปีที่แล้ว

    Hats off to you Sir !
    Just awesome.

  • @kosmickarma29
    @kosmickarma29 4 ปีที่แล้ว

    Why n = 2^m? Shouldn't it be equal to 2 which is the base case?

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

    sir, how to solve T(n)=2T(n^1/2)+log n... I am following your approach but I am unable to solve it(the log n part which is forming a series)...please explain

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

      facing the same issue. Did u get this?

    • @niranjansingh8457
      @niranjansingh8457 4 ปีที่แล้ว +1

      @@swethabadam6468 i have got this. The answer is coming as O(logn . loglogn)

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

    I became master in Master's theorm

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

    Why n=2^m

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

      For simplicity of solution

    • @raunakmitra7868
      @raunakmitra7868 4 ปีที่แล้ว +1

      Look brother.
      That's actually n = b^m. In Merge Sort or Binary Search, you divide bigger problems n into either 1 or 2 (in this context, the number of sub problems really doesn't matter) sub problems each of size n/2. So, here b = 2. While solving Divide and Conquer recurrence relations, always assume b to be 2. Now, why n = 2^m? Think about it. The value n in the denominator should be such that it gets fully divided into smaller sub problems (integer division is being discussed here). That is only possible if n is a multiple of b, here 2. Hence, n = 2^k.

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

    Or we can take n^(1/2^k)=2 to get T(2) in the last equation(terms of k) ...

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

    Appreciate your time and efforts in enlightening us, can you please help to solve this T(n) = T(n/4) + T(sqrt(n/2)) + n, I'm finding very challenging to solve this.

  • @fantasy9960
    @fantasy9960 2 ปีที่แล้ว

    Thank you so much sir, really appreciate your teaching and great videos!!!

  • @mohammedadel8948
    @mohammedadel8948 2 ปีที่แล้ว

    Thank you for your efforts

  • @Preet..
    @Preet.. 6 ปีที่แล้ว

    sir please upload videos of recurrence relation with some numerical examples .......
    please jaldi upload kijiye

  • @preethamm.n1161
    @preethamm.n1161 5 ปีที่แล้ว

    Thank u very much sir
    😍😍😍🤗😃

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

    T(n) = T(√n) + n what about this??

  • @zoyasingh-mp4pt
    @zoyasingh-mp4pt 10 หลายเดือนก่อน

    But how can we solve using masters theorem?

  • @ankitcaring
    @ankitcaring 4 ปีที่แล้ว

    Plz make a video on soving using Master's Theorem.
    But there is a problem b value is less than 1 according to me

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

    Sir would you like to help me please, I want to know how can I withdraw my udemy earnings It has been more than a month I'm trying so , my tax docs approved and my Paypal is successfully linked

  • @princess_nn
    @princess_nn 4 ปีที่แล้ว

    your are my hero 💕

  • @lokeshwaris9706
    @lokeshwaris9706 4 ปีที่แล้ว

    Where is master's therome for root ???? Did he skip as it's same as that of decreasing ????

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

  • @SalimKhan-rg1lp
    @SalimKhan-rg1lp 6 ปีที่แล้ว +1

    How to solve directly root using Masters theorem

    • @kushanksingh3640
      @kushanksingh3640 4 ปีที่แล้ว

      masters theorem can't be applied as b is not greater than 1.

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

      @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

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

      @@kushanksingh3640 @all solving using master theorem
      Take n = 2 power m
      Then
      We have t(2 p m) = t(2 p m/2) + 1
      Now again let s(m) = t(2pm)
      Then we can write s(m) = s(m/2) + 1
      So case 2 we have
      Answer as log m
      But we need in terms of n so we have
      n = 2 p m thus m = log n base 2
      Replace m now
      Answer log log n
      Solved using master theorem

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

    u will take math class and algorithms in this series

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

    Why n=2^k , please give me the clear reason

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

    you should HAVE explain the MT EXAMPLE............

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

    2^k is always greater than 1 so 2^k is not equal to 1.

  • @janardanupadhyay8533
    @janardanupadhyay8533 4 ปีที่แล้ว

    thank you so much sir

  • @Aditya-Pathariya
    @Aditya-Pathariya 3 ปีที่แล้ว +1

    Thanks a lot

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

    God bless u sir.

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

    Nice video sir

  • @ojaspatil2094
    @ojaspatil2094 2 ปีที่แล้ว

    thank you sir!

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

    Thank you sir.

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

    T(n) = 2T(sqrt(n)) + sqrt(n)
    Solve this please

  • @abdullahbabor4876
    @abdullahbabor4876 4 ปีที่แล้ว

    My dad always says Indian Muslims are so good. Now I see why!

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

    Why we have assume that T(2^m/2^k)=T(2)????

  • @AnujKumar-tt5md
    @AnujKumar-tt5md 4 ปีที่แล้ว

    Thanks🌹

  • @notifyvaccine7107
    @notifyvaccine7107 2 ปีที่แล้ว

    below is the problem, please help me to solve this problem

  • @pvssandeep2836
    @pvssandeep2836 4 ปีที่แล้ว

    Thank u sir

  • @jay-rathod-01
    @jay-rathod-01 3 ปีที่แล้ว

    Quality!

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

    Thanks

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

    txn sir

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

    Wael's Dad

  • @louerleseigneur4532
    @louerleseigneur4532 4 ปีที่แล้ว

    brovo

  • @PreetiSingh_1106
    @PreetiSingh_1106 5 หลายเดือนก่อน

    Thank You Sir.