recursion fibonacci series

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

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

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

    Seriously man this recursion is not less than rocket science for a beginner like me...

    • @maha-kq9um
      @maha-kq9um 3 ปีที่แล้ว +3

      Yeah😬

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

      for fibonacii(5)
      fibonacii(5) = fibonacci(3) + fibonacci(4)
      = [ fibonacci(1) + fibonacii(2) ] + [ fibonacii(2) + fibonacci(3) ]
      = [ 1 + 1 ] + [ 1 + [ fibonacii(1) + fibonacii(2) ] ]
      = [ 1 + 1 ] + [ 1 + [ 1 + 1 ] ]
      = 2 + [ 1 + 2 ]
      = 2 + 3
      = 5
      i have tried simplifying it . Let me know if it helped you

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

      @@anonymousnoob3660 I am thinking how much time you spend in writing this comment 🙂🙂🙂

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

      @@kunalghosh4334 Don't bother as as long it helps i'm cool with it

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

      @@anonymousnoob3660 ❤️

  • @jyotigupta6921
    @jyotigupta6921 4 ปีที่แล้ว +39

    sir in this current world of digital study ,we still wamt a teacher to explain the concept in detail like this..please continue the good work, we all appreciate your efforts .. thank you

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

      @jyotigupta6921 you are so sweet Jyoti Gugpta ji .. mera ek dost hai hai wo bhi gupta hai ...

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

      ​@@kanhaiyabhardwaj4504simp spotted

  • @neetujha4168
    @neetujha4168 4 ปีที่แล้ว +10

    I watched around 6 to 7 videos, only in this video I could understand the recursion properly. Thankyou

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

    Awesome lecture life m pehli Baar koi Acha sai smjhaya hai

  • @akashsahu54
    @akashsahu54 5 หลายเดือนก่อน +2

    Bestam Best explanation raja ji

  • @001Tadasuke
    @001Tadasuke 4 ปีที่แล้ว +10

    Hello! Although I am learning C programming, at the explanation of recursive functions, the Fibonacci Sequence appeared. It seemed very difficult, because a statement has 2 functions, which is itself. I could not imaging how it expands, but I have understood it. Following your explanation, I also checked the process by my hand. Thank you, so much!

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

      Is this Inc programming plu reply

  • @sbikki1248
    @sbikki1248 5 ปีที่แล้ว +8

    Finally i understand how last
    fib(n-1)+fib(n-2) work.
    Lots of thnak

  • @陈瀚龙
    @陈瀚龙 4 ปีที่แล้ว +3

    This was the closest I came to understanding this. Then on the way back up the board got too cluttered and I couldn't follow. That's for getting me closer, sir.

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

    I don't know why you wouldn't get goods likes but your explanation is best I have seen many videos on this concept but understood by ur video so please make more videos even a complete course.
    Thanks alot sir.

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

      th-cam.com/play/PLz1fCnmAyf4uctgkU3_yYkXhkkLUQFkwt.html

  • @BestTutes
    @BestTutes 6 ปีที่แล้ว +21

    Sir I satisfy your lecture but Fibonacci series start to 0

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

      u can do it from 0, if u take 0 instead of 2 in base case..

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

      Just put a printf("0, "); 😂

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

      @@avesh_sayyed just replace the base if with this one: ‘if (n == 0 || n == 1) return n;’. That way you will print 0, 1, 1, 2…, n.

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

    Very very thanks sir literally i trying for last two days learning this concept of recursion today's i have finally understand this concept 🙏🏻

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

    Sir the video was great but only one thing has to be changed ,the fibonacci series starts from 0 ,i might be wrong but still this is what i know

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

    god 7:49 solved biggest mistery how fib 2 changed directy into 2 lol i paused 6:34 for 3-4 min to understand what he done

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

    Thankyou, i finally understood because of your execution

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

    Thank you so much! This is helpful for doing code and past test cases in the assignments of Newton School. I'm so glad that I found it.

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

    Explaination is good. But the board is too messy and you’ve squeeezed them together, u can hardly see anything

  • @brandogg
    @brandogg 5 ปีที่แล้ว +8

    If you passed a 0 to this it would be an infinite loop...need if (n==0) return 0

  • @n.s.karthik5628
    @n.s.karthik5628 5 ปีที่แล้ว +3

    Thank you so much because of your explanation I clearly understood how recursive function works.

  • @WeGaming-26
    @WeGaming-26 ปีที่แล้ว +1

    Best explanation sir 🔥🔥🔥

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

    thank you sir itna acche se explaine karnne ke liye

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

    Best explaination thankyou lots of love from nepal keep growing ......

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

    Nice explanation technique understood very well. Thank you so much sir.

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

    Good job sir. Thank you

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

    well explained😊

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

    ek video bana dijya sir ... bada black board me bahut hotch pooch ho gha hai screen me

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

    Really very good I don't understand y there are less likes..... Because he is explaining tracing part very easily than compared to other vdeos which are complex to understand and also they ll get more likes yyyy it is so

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

    Thank you so much Sir! Recursion gets confusing for me but this helps a lot!

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

    very helpful as a beginner.Thanku so much.

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

    Very good explanation

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

    video was helpfull. But sir make habbit to speak loud

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

    This program generates only the nth term of Fibonacci series rather than displaying the Fibonacci series uptill nth term

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

    Really u make me understood very well.... 👏👏👏👏..... Pls focus on communication lil bit u will get better success than others.... All d best n thanks u so much

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

    nicely explained sir 👍👍

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

      Plss make a vid on fibonacci

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

    love u from bangladesh....recursion clear....thank you sooo much... may ALLAH bless you.

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

    You are great teacher...

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

    Thanks finally understood after watching so many videos 😌

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

    Thank You, the best explanation

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

    Sir sir sir thank you very much
    It is helpful for me

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

    you explain the part that most of student doesnt understand but i suggest you to redo the video and redo the plan clearly cause its hard sometimes to identify some numbers

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

    Thank you so much. Your explanation is truly understood.

  • @cme-033manojrao7
    @cme-033manojrao7 2 ปีที่แล้ว

    Must and should add for loop

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

    Loved the way how you explained

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

    Good

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

    If you can't speak English fluently then just try in your langauge

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

    But the first num may be 0 in the fibanocci series??

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

    Sir video would have been nice if u had started from 0 not 1

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

    Super explanation sir

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

    sir,though you had made a silly mistake,(:-p)only you managed me to understand this problem. thank you. :-)

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

      Visit sci_comp channel on TH-cam to explore more on python

  • @rnjnmhta.catomato
    @rnjnmhta.catomato 2 ปีที่แล้ว

    thanks for the video

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

    awesome vid!! this helped so much!!

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

    Thank you so mich Brother 👍

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

    I have spend over a 2 days to got this but after watching your video i got it in just 20 minutes thanks so much

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

    Please what do you mean by n is it concerne the position of the number or what ??

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

    Best info

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

    Thank you dude, you helped me significantly

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

    Why return 1 if condition, explain

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

    Good explanation i really appreciate

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

    Thank you ☺️ sir❤️❤️

  • @rajkirankhulimuli5182
    @rajkirankhulimuli5182 3 หลายเดือนก่อน

    Thank You, Sir

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

    well this is only thing that made sense to me. seriously thankyou somuch.

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

    Sir Fibonacci series starts with 0
    So u haven’t displayed it
    What changes should be done to display 0

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

      SIMPLY WRITE printf("0
      ");

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

    Very helpful.......

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

    but the 1st fibonacci number is 0

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

    TQ so much sir

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

    Need full source code!

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

    You can start Fibonacci series with 0

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

    👍🙂

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

    I got it, good explanation, tq☺

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

    First Fibonacci 0

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

    Fibonacci series start from 0

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

    Thank you sir

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

    thnku very much sir

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

    sir thanks for confusing with your delivering skill

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

    nice

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

    this person messing up

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

    thanku so muchh sir

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

    Thank you!!

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

    not a good explanation, i cant understood anything at the last feb(3) call , whatching frequently but not understanding.

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

    Bhai ache se padhana heii to padha warna mat padha

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

    not clear

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

    Onnum theriyama nadathadha

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

    Following wrong format
    First learn and then explain

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

    How bad it was... Poor explanation

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

      th-cam.com/play/PLz1fCnmAyf4uctgkU3_yYkXhkkLUQFkwt.html