Stepping Through Recursive Fibonacci Function

Поділитися
Вставка
  • Опубліковано 29 чер 2011
  • Understanding why and how the recursive Fibonacci function works

КОМЕНТАРІ • 243

  • @yanzeliu
    @yanzeliu 8 років тому +280

    This is the most clear explanation I found !! It's really nice and helpful.

    • @redrowolloftnod5230
      @redrowolloftnod5230 6 років тому +4

      I think it's horrible for the simple fact that it doesn't mention the stack.

    • @joemah555
      @joemah555 5 років тому

      yeah!!!!!

    • @jose-fi3gw
      @jose-fi3gw 3 роки тому

      TILL THIS DAY

    • @manmohanchowdary1707
      @manmohanchowdary1707 3 роки тому

      Yes bro

    • @dynamicdkl
      @dynamicdkl 2 роки тому

      @@redrowolloftnod5230 after going through some recursion , i felt its working like stack . isn't it ?

  • @marybandziukas1544
    @marybandziukas1544 4 роки тому +23

    Thank you! I have been puzzling over how this works for 2 days. Khan Academy always delivers a clear and completely understandable explanation. Mainly by use of colors and not skipping a single step.

  • @user-mn3iq2cs9n
    @user-mn3iq2cs9n 4 роки тому +15

    This is the ONLY clear, clean, and thorough explanation of this algorithm, that I've found, on youtube or EdX. Thanks a million. You make it a good thing to shout KHAAAAAAAAAAAAAAN!!!

  • @max-pax
    @max-pax 3 роки тому +29

    I loved it. Most productive 5 minutes of my life right after conception and birth :)

  • @julietonyekaoha402
    @julietonyekaoha402 4 роки тому +1

    I have been going over the recursive solution of the Fibonacci sequence for a day now and I couldn't figure it out , this explanation was clear and concise and I finally understood what is happening under the hood. Thank you so much.

  • @ikroac
    @ikroac Рік тому

    13 years after and this explanation of recursive function is still the better. Thanks a lot sir

  • @Occupiedmarkus
    @Occupiedmarkus Рік тому +2

    11 years later, this is still the better video than the rest

  • @anilbarad1856
    @anilbarad1856 Рік тому +2

    i have seen too many videos on this but this video has best explanation ever , great video , i am going to press subscribe button...thank you.

  • @mr.anonymous6098
    @mr.anonymous6098 2 роки тому

    Wow! This guy knows so much about so many things. I am truly impressed! Khan, you are a lifesaver! Watched your videos for almost every AP class that I took in High School. Now I am in college and still keep watching your videos cuz they are really helpful!

  • @amitdhawan579
    @amitdhawan579 3 роки тому +1

    I have watched quite a few videos on recursion but this one has explained it clearest of all. Thank you very much for this awesomeness!

  • @KDazee
    @KDazee 8 років тому +73

    You are really a life saver sir. Your explanation was so clear I understood it in one try. Thank you

    • @csnick248
      @csnick248 7 років тому +2

      Actually, when solving the fibonacci problem - or more importantly recursive problems in general - we don't think in this way at all. We think about it in a pretty much mathematical way and apply the "recursive leap of faith"; that is, we assume that it works, ignore all the fuzzy details and let the computer deal with those. We only focus at one single level of computation; if we have found the base cases, have managed to break down the problem into smaller instances of the same form, solved those and combined them, then the algorithm will simply work. Perhaps you meant this. :)

    • @rajivnarayan5214
      @rajivnarayan5214 7 років тому

      Thats y you gotta program a lot. You'll realise when to and when not to use it.

    • @aiueo8962
      @aiueo8962 11 місяців тому

      ​@@csnick248i agree with you

    • @jmbrjmbr2397
      @jmbrjmbr2397 5 місяців тому

      @@csnick248 yes but imagine this, what if they ask you the runtime of this problem? How are you going to calculate the steps this function takes? You need a deeper understanding of computer's control flow to calculate that (big O)

  • @basedmangoes3379
    @basedmangoes3379 8 років тому +2

    Amazing explanation Sal. I have looked through many videos that explained how to trace a recursive function with two calls in one method, and this one really takes the cake.

  • @abdulhk79
    @abdulhk79 Місяць тому

    I did try to understand this for almost an hour. Not for this video, I really don't know how much more time was needed to figure this out. This explanation will further help me to unpack other programming aspects. Thanks a lot.

  • @alexandrafoot8783
    @alexandrafoot8783 3 роки тому

    I went over my class notes on recursion several times and it just wasn't clicking, then 2:08 minutes into this video I suddenly get it like its as simple as 2+2. You are a skilled teacher and a gift to the world

  • @ozzyfromspace
    @ozzyfromspace 5 років тому +2

    The mind bending thing about writing recursive code is the realization that all you’re doing is writing one function that returns a second function. The eureka moment comes when you realize that the second function could be anything, and in this case it is the starting function, perhaps with an algorithmically deprecated or advanced parameter. Then those base cases just show up to stop the code from running ‘forever’ (i.e. until your processor crashes). In a way, recursion is a way of nesting functions, and sure the values at each step have to be stored on the stack and there’s a whole bunch of clever stuff happening in the background, but essentially a recursion is when you write a program that calls itself later, in effect allowing you to build a loop of functions. I can totally see how this would be useful for generating trees and other linked data structures. Thanks for the explanation, Sal! When I was first exposed to recursive code in my freshman year, I didn’t understand it and I failed to see the relevance but now it seems more natural. Kudos to you sir, learning never stops!

  • @SrFrancia0
    @SrFrancia0 7 місяців тому

    Very good explanation. Amazing that this video is 12 years and there isn't a newer one that explains it better

  • @jra89027
    @jra89027 2 роки тому

    This is a really good example of what is actually going on during recursion. Thank you!

  • @andrewfrolov5144
    @andrewfrolov5144 3 місяці тому

    Best explanation ever, even math websites couldn't get to the point what it really wants. Perfect!

  • @sidd8988
    @sidd8988 4 роки тому

    I was searching for an hour to find a best explanation for a recursive function. Finally ended by here ☺️

  • @usraniguugl
    @usraniguugl 9 років тому +1

    Sir, THANK YOU VERY MUCH!! it's not only in knowing something but in the ability to explain it! great video!

  • @tabula.rasa.
    @tabula.rasa. 4 місяці тому

    I've been struggling with this for week and this is literally the only video that cleared it up.

  • @cartylove3829
    @cartylove3829 3 місяці тому

    Man I wished I watched this video before doing my coding assignment, but I’m still glad I watched it because i was not able to figure it out during my assignment, and it bothered me so much afterwards. Can’t believe I never understood how Fibonacci works until now, good video 👍

  • @martingracchus1687
    @martingracchus1687 3 роки тому +3

    amazing, for 9 years this video has been granting clarification to aspiring programmers. I am learning how to use caching and hashtables to reduce the time complexity of this function but did not fully understand how the naive solution worked and how the stack handles all of the returned values and how they are actually added. this makes so much sense now, THANKS.
    "The cobwebs are now removed" - artie bucco (anyone who gets this reference gets a like)

    • @user-zf1pl6wj4n
      @user-zf1pl6wj4n 7 місяців тому

      It´s funny what you are saying, because currently the software development industry is full of "programmers" which lack of fundamentals and propper preparation.

  • @yusufgokce7524
    @yusufgokce7524 3 роки тому +1

    The code up there is probably the most beautiful thing I've ever seen

  • @itstaw
    @itstaw 5 місяців тому

    Thank you lol Much clearer and more precise than other explanations I have found!

  • @zubairhasan9434
    @zubairhasan9434 2 роки тому

    THE BEST EXPLANATION!! I've been pulling my hair off how th does this recursive call works internally. Now I've finally got it.

  • @mitchellstevens3948
    @mitchellstevens3948 7 років тому +5

    THANK YOU! I've been looking for this explanation in preparation for a tech interview, for WEEKS!

  • @sheldonwalkerjr8210
    @sheldonwalkerjr8210 5 років тому +1

    Thank you sooo much! I could not wrap my head around this.

  • @manish436
    @manish436 2 роки тому +1

    This is very clean and clear to visualize.
    Our mind do not work on numbers/text, it works on visualizations/images
    This how we would be thing about recursion in our mind. Thanks a lot for understanding our mind & making us understand too....

  • @AbhishekDubeyIT
    @AbhishekDubeyIT 5 років тому +2

    Thank you very much,I am from India, I loved the way you solved it as easy as possible. thanx again

  • @pradeenkrishnag2368
    @pradeenkrishnag2368 Рік тому +1

    Best explanation. Was trying to figure out. Now it is clear.

  • @Sarah-re7cg
    @Sarah-re7cg 2 роки тому

    This is extremely helpful. I got so caught up and confused on how to trace where in the world the interpreter is. thank you so much.

  • @daneeldouglass6391
    @daneeldouglass6391 6 років тому +1

    THIS IS THE MOST BEAUTIFUL EXAMPLE OF PROGRAMMING AND RECURSION!! With this example alone i have became a better programmer.

  • @MegaEriable
    @MegaEriable 12 років тому

    SAL, YOU ROCK! I JUST CAN'T DESCRIBE HOW HELPFUL THIS VIDEO WAS TO ME! THANK YOU SO SO MUCH!

  • @haddly123
    @haddly123 7 років тому +19

    awesome, awesome video. Have been trying to understand why fib(4) + fib(3) doesn't equal 7. You explained perfectly. Cheers

  • @HJ-vk2bq
    @HJ-vk2bq 3 роки тому

    This is the clearest explanation I have ever seen. very helpful

  • @ronglass5968
    @ronglass5968 7 років тому +2

    Beautifully explained. Thank you!

  • @CrazyTimeTraveler
    @CrazyTimeTraveler 6 років тому +2

    Thank you very much for this very clear explanation, this might save me for my test tomorrow :D

  • @irfanbabar8424
    @irfanbabar8424 3 місяці тому

    Simple & clear explanation. Thanks

  • @astroboomboy
    @astroboomboy 11 років тому +1

    Very nice explanation of a compiler. Easy and clear!

  • @BriteRoy
    @BriteRoy 11 років тому +2

    Omg , I was seriously baffled with recursive function's backend process since last few days and finally my doubt is (I think) clear ,basically it remembers the values in a stack and processes step by step. Now hopefully I'll be able to solve a similar recursive question.Thanks khanacademy

  • @funmathematics58
    @funmathematics58 3 роки тому +1

    Best explanation of fibonacci on youtube!

  • @spacemeter3001
    @spacemeter3001 4 роки тому

    Perfect video. Understood it right away. You're better than my teacher in programming. lmao

  • @DrDerivative
    @DrDerivative 2 роки тому

    Exactly what I needed to understand this topic, thank you!

  • @TimmyGoesForTrip
    @TimmyGoesForTrip 4 роки тому +1

    gosh that was the best to video to understand the sequence! thank you from 2020)

  • @aliahmed-lj4rb
    @aliahmed-lj4rb Рік тому

    The simplest and subtle explanation on entire youtube

  • @daltonistadod2855
    @daltonistadod2855 Місяць тому +1

    I needed that so badly

  • @baabujatin
    @baabujatin 4 роки тому +1

    Awesome Stuff.. Most clear as mentioned by others.. took me around 10 videos to land here... was not able to understand the concept ... Thanks Team ... Stay blessed.

  • @MuwalJitender
    @MuwalJitender 2 роки тому

    Bravo Khan Academy. You are doing awesome work.

  • @PratikDeshmane7006
    @PratikDeshmane7006 4 роки тому +2

    Finally got the perfect explanation!

  • @martinmoragab
    @martinmoragab 2 роки тому

    Amazing explanation! Easy to understand it this way. Thanks!

  • @felipelima2724
    @felipelima2724 4 роки тому +2

    Very good explanation!!! The best!

  • @avichiii
    @avichiii 10 місяців тому

    one of the most clear explanation.

  • @ammgnero
    @ammgnero 3 роки тому

    Holy Moly
    wonderful explanation sir

  • @Arif_0899
    @Arif_0899 3 роки тому +2

    WoW.... I promise you once I become a software engineer, I will donate half of my first salary to khan academy and that's a promise. You really are changing lives.

  • @yadatis5905
    @yadatis5905 5 років тому +1

    Thank you so much ☺️ sir. It's very helpful for me.

  • @markkillion6845
    @markkillion6845 Рік тому

    Thank you for this clear explanation. It was very helpful!

  • @trippyvoyager9879
    @trippyvoyager9879 3 роки тому

    This is the best video i found on the internet

  • @AdnanRizvan
    @AdnanRizvan 9 років тому

    Very helpful indeed.You explain a lot better than professor and it really helped me figure out how does this actually work. +1

  • @baryosef6245
    @baryosef6245 7 років тому

    Amazing explanation. You are awesome!

  • @FromTheV
    @FromTheV 4 місяці тому

    Absolutely perfect! Thank you

  • @AnaGuerra03
    @AnaGuerra03 2 роки тому +1

    THANK YOU
    THANK YOU
    THANK YOU
    THANK YOU
    THANK YOU

  • @zacloebs
    @zacloebs Рік тому

    First video that made me actually understand :)

  • @hansnery
    @hansnery 3 роки тому

    Thank you, I finally understood how it works now.

  • @Nasimkhadv1996
    @Nasimkhadv1996 11 місяців тому

    Thank you so much for your clear explanation. This helped me a lot🤩

  • @codaacademy5888
    @codaacademy5888 6 місяців тому

    this is the best explanation , really thanks

  • @abdallahelnashar1520
    @abdallahelnashar1520 Рік тому

    Wooooow Thank you very much Greatest Explanation Ever!!!

  • @ngxbeans
    @ngxbeans 11 років тому

    Usually rely on Khan's videos for math help. Now I have his help with CPU SCI. Very happy right now lol

  • @cellmaker1
    @cellmaker1 Рік тому

    This is extremely helpful. Thanks

  • @yogi915.
    @yogi915. 7 років тому

    So thankful for your explanation!

  • @lesegomabe2679
    @lesegomabe2679 8 років тому

    Great explanation! Thank you!

  • @vishnu364
    @vishnu364 3 роки тому

    simple and neat explanation...thanks a ton!!

  • @zenlupe
    @zenlupe 8 років тому +2

    Great explanation!

  • @yagnapatel3912
    @yagnapatel3912 3 роки тому

    Everything makes sense now, much thanks

  • @andregomes7232
    @andregomes7232 Рік тому

    Thank you so much man! you made it looks easy

  • @lestra378
    @lestra378 Рік тому

    Thank you for this amazing explanation

  • @himashihettegedona9484
    @himashihettegedona9484 4 роки тому +1

    Thank you so much for this video!

  • @wildfyah
    @wildfyah 5 років тому +3

    And just like that my headache went away. Thanks.

  • @voltron909
    @voltron909 11 років тому

    Compilers are used to interpret computer language (english word commands) into machine language (binary language such as 010101). Machine language are what processors use to carry out what you want. A compiler takes some function, and converts it to machine language.

  • @cedricmendoza8316
    @cedricmendoza8316 2 роки тому

    Always quality content. Thank you.

  • @christanprice5720
    @christanprice5720 Рік тому

    This was extremely helpful!

  • @92501le386
    @92501le386 3 роки тому

    thank you very clear explanation you have a gift, man what a talent you have thank you for taking the time to do this, its helping so many out there i do believe.

  • @ansekao4516
    @ansekao4516 2 роки тому

    WOW, thank you very much, bc I wasn't sure I was assuming it correctly. Thank you very much for making it clear. ;3

  • @ravipatel-xu5qi
    @ravipatel-xu5qi 3 роки тому

    Thank you for your efforts.

  • @anyavailablehandle
    @anyavailablehandle 2 роки тому

    Great explanation !!! Thanks

  • @mink9048
    @mink9048 4 роки тому

    Great video. Thank you.

  • @hassan-rakib
    @hassan-rakib 2 роки тому +1

    Genius! Saved my day!!

  • @RahulSharma0
    @RahulSharma0 Місяць тому

    Well explained. Thank you

  • @himanshusaxena8639
    @himanshusaxena8639 Рік тому

    This video would have saved my week if I found it earlier .

  • @nikosspiropoulos8417
    @nikosspiropoulos8417 Рік тому

    wow dude, you are awesome! thank you so much!

  • @dami4410
    @dami4410 Місяць тому

    Really helpful, Thank You !!

  • @ars7070
    @ars7070 5 років тому

    TQ soooooo much... Uve help me ony exam day

  • @rambodehydrated
    @rambodehydrated 7 років тому +1

    Thanks, well explained :)!

  • @gate_one_loyal
    @gate_one_loyal 6 років тому

    very nice explanation , thanks man

  • @elarabymohammed1
    @elarabymohammed1 8 років тому

    May god bless you Sir!

  • @shahbazdurrani2989
    @shahbazdurrani2989 10 років тому

    very nice explaination thank u very much

  • @RayOnTheInternet
    @RayOnTheInternet 6 років тому +1

    Finally a clear, visual representation. Thank you so much

  • @zeeshan1019
    @zeeshan1019 8 місяців тому +1

    Lovely sir

  • @Ortomigo
    @Ortomigo 2 роки тому

    Thank you sir!
    Really.

  • @FredMaher
    @FredMaher 7 місяців тому

    I have been trying to find something that actually explains how recursion works. In this case using a fibonacci sequence, it is clearly explained. I had been thinking about it all wrong - It was the tree structure that helped me understand it once and for all. Chat GPT and BARD were no help at all. I am now smarter than I was 8 minutes ago.