What Is Dynamic Programming and How To Use It

Поделиться
HTML-код
  • Опубликовано: 3 дек 2024

Комментарии • 1,6 тыс.

  • @CSDojo
    @CSDojo  7 лет назад +641

    I missed putting a second argument (memo) at 6:16 when calling fib(). Sorry.
    Anyway, here’s an outline of this video:
    0:00: Intro
    0:38: What’s the Fibonacci sequence?
    1:37: 3 steps for solving a problem with dynamic programming
    2:21: Finding the n-th Fibonacci number with recursion
    4:28: A memoized solution
    6:37: A memoized solution - time complexity
    9:24: A precursor to the bottom-up approach
    10:45: A bottom-up approach
    12:30: Demo with Python and Jupyter Notebook
    Sample code is available in Jupyter Notebook and plain Python at: www.csdojo.io/dpcode

    • @therohitsahani
      @therohitsahani 7 лет назад +3

      CS Dojo I am very interested in technology and related of it. And if in the future I want to get a job at #Google so what should I have learned before getting into the #Google

    • @nightlight3169
      @nightlight3169 7 лет назад +3

      Is python automatic able to store that big of a int? Because I try to find very big number in the fib seq but nothing in Java can Gould something that long and big

    • @benjaminsteeth2966
      @benjaminsteeth2966 7 лет назад +6

      You don't deserve Google. Google deserves you.

    • @Ahmad_hehe_1
      @Ahmad_hehe_1 7 лет назад

      YK i have a question please reply.I am taking your python lectures already should i take your dynamic language lectures?

    • @Rohitsingh2410
      @Rohitsingh2410 7 лет назад +2

      Hey YK .. i am a beginner with algorithms and data structures can you refer me some good video tutorials and books on data structures and algorithms. Thanks

  • @pguti778
    @pguti778 6 лет назад +458

    Thank you CS dojo !!! I've passed a job interview because of this!!! You're the best!!!

    • @stard1758
      @stard1758 3 года назад +12

      Are u serious?, can u explain to me what job exactly did u get and what they asked u exactly ? Thank u

    • @kossklepht3843
      @kossklepht3843 3 года назад +13

      @@stard1758 Almost all the big companies are using dynamical programming problems during technical interviews.

    • @viziopuzi9339
      @viziopuzi9339 3 года назад +24

      @@rohitshekharsingh2579 right ! Kudos to being jerk of the year !

    • @ayushraj6525
      @ayushraj6525 3 года назад +6

      @@rohitshekharsingh2579 Awww, Poor brain💩💩💩

    • @tongpoo8985
      @tongpoo8985 3 года назад +2

      @@rohitshekharsingh2579 someone is bitter

  • @michaelw7769
    @michaelw7769 3 года назад +238

    Well explained! One suggestion for your bottom up approach is that you don't need to use an array with size n to hold all the numbers, you just need 2 variables to hold the previous two numbers, and keep updating them when iterating.

    • @igorthelight
      @igorthelight 2 года назад +7

      That's smart! ;-)

    • @charan_75
      @charan_75 Год назад +40

      For anyone wondering how to do using two variables in bottom up approach.
      def fib(n):
      if n == 0 or n == 1:
      return n
      first = 1
      second = 0
      result = 0
      for i in range(2,n+1):
      result = first+second
      second = first
      first = result
      return result

    • @codewithsheikh2805
      @codewithsheikh2805 Год назад +10

      If you just need result of nth Fibonacci but he is populating array.

    • @coffeedude
      @coffeedude Год назад

      ​@@codewithsheikh2805he is just returning the final result, not the array

    • @Sant270
      @Sant270 Год назад +2

      using fib sequence to teach recursion and DP is a very bad idea

  • @TinOfBeans321
    @TinOfBeans321 7 лет назад +546

    You're great at explaining! I'm a final year comp sci student and have come across fib and dp countless times but this is the simplest and best example I've seen yet. Keep it up!

    • @CSDojo
      @CSDojo  7 лет назад +16

      Thank you!

    • @RachitJain
      @RachitJain 7 лет назад +8

      You should also checkout this video then goo.gl/StJCAq

    • @maxim9280
      @maxim9280 5 лет назад +1

      Well we had it in school. And I still don't consider myself good at programming

    • @HarshPatel-iy5qe
      @HarshPatel-iy5qe 5 лет назад

      Hey buddy from which university you're pursuing?

    • @raj_patel_43
      @raj_patel_43 5 лет назад

      @@RachitJain hey bro, i am your subscriber, your are legend

  • @DadBodSwagGod
    @DadBodSwagGod 5 лет назад +427

    I feel like an idiot. I never realized that Dynamic Programming wasn’t actually anything special. It’s just a few commonly used strategies for solving any given problem

    • @sabah8312
      @sabah8312 3 года назад +8

      haha ... Same here

    • @nadiequintero9981
      @nadiequintero9981 3 года назад +37

      Well, you're not an idiot. You were just uninformed.

    • @ayemaeyalit3354
      @ayemaeyalit3354 3 года назад +2

      Is it just recursion or is it also something else?

    • @DadBodSwagGod
      @DadBodSwagGod 3 года назад +21

      @@ayemaeyalit3354 It's basically the idea of the algorithm changing priorities and not looping through stuff it knows won't give it a result, preferably in a way where it was designed to eliminate those possibilities in as few operations as possible.
      That, as opposed to the basic thing of just looping through everything.
      You've almost definitely done it without knowing the word for it if you've taken at least a few years of computer science classes

    • @MyFictionalChaos
      @MyFictionalChaos 3 года назад +3

      algorithms arent super advanced concepts. you have to remember the majority of computer science has existed in the past century

  • @doumkatekz
    @doumkatekz 6 лет назад +526

    Thank you! I'm a developer without a CS degree. Never really needed it but I'm trying to level up my skills and seeking out the things I've missed. Been doing it most of my life and I'm probably twice your age, never mind ego and pride, I'll learn where the learning is. Excellent video and explained very clearly.

    • @CSDojo
      @CSDojo  6 лет назад +53

      Thank you so much for saying that!

    • @TjMulyadi
      @TjMulyadi 5 лет назад +39

      Ditto here , Bro. I'm aLmost 40 but age doesnt matter when it comes to Learning. Learn from younger ppL never bother me a bit... hey one day our young friend here might Learn something from someone even younger.

    • @jhguygih
      @jhguygih 5 лет назад +3

      I have bacharel in System information which had very basic algorithms and now that Im 32 and studying those to improve my mind explodes in every video. Also he explains very well indeed.

    • @HanifCarroll
      @HanifCarroll 4 года назад +11

      Same! I'm a bit older than the fresh grads at 28, but I'm self-taught and have been programming for 3 years now. Within the last couple of months I decided to start learning more about data structures and algorithms, and boy, it's incredible what it's done for my problem solving abilities. I feel so much quicker and more confident now. And it actually uncovered an interest in numbers that I didn't know was there!

    • @onilbautista
      @onilbautista 2 года назад +1

      this is so nice! you go man!

  • @nemousama4637
    @nemousama4637 6 лет назад +9

    Awesome video. I'm a professional software developer who has been programming for a decade, and I still found this video helpful to put a name to something I've been doing without thinking.
    Also, you have almost single-handedly erased my prejudice against RUclips videos as a medium for quickly conveying CS/programming concepts. You are concise, to the point, presentable, and easy to follow. You do not waffle or waste people's time with showboating. I will be recommending your channel from now on.

  • @thawsitt
    @thawsitt 7 лет назад +23

    You only need 2 variables to store the last 2 fib values. The following code has
    O(N) time complexity
    O(1) space complexity.
    def nth_fib(n):
    a = 0
    b = 1
    for i in range(n - 1):
    temp = a + b
    a = b
    b = temp
    return b

    • @nekojackson9856
      @nekojackson9856 Год назад +3

      The advantage of the video's style of memoization comes in when the same function is called multiple times. If the video's function has already calculated fib number N, and you now want to use it to compute fib M ≤ N, then the second function call just has to look up N in a pre-initialized array. That reduces computational complexity to O(1) for that second call

  • @dhawalmajithia4959
    @dhawalmajithia4959 4 года назад +5

    I keep coming back here for a refresher every time I have an interview scheduled. Love this

  • @raghavendra2096
    @raghavendra2096 3 года назад +2

    I am following your data structures playlist and came across recursion where you mentioned dynamic programming and i came here.
    You are a great teacher with passion, that's what makes u separated from others. This is my opinion by seeing your videos. Sometimes some people teach some stuff which is also good but it might make you doubt yourself, here even though i have watched with just 50% focus (after a day long work) i could still understand.
    Thanks soo much for teaching us all for free, i feel grateful that we have internet and best teacher teaching it all for FREE!!!

  • @MASTERISHABH
    @MASTERISHABH 5 лет назад +32

    This is my solution for that question in Python which takes O(n) time with O(1) space.
    a, b = 0, 1
    for _ in range(n):
    a, b = b, a + b
    return b
    PS: If you want to implement this in other languages, simply add a temp var when swapping a and b.

    • @VivekYadav-ds8oz
      @VivekYadav-ds8oz 3 года назад +1

      Well yeah that is the most common way of doing it. This example was really good in explaining dynamic programming because nobody is caught up in the solution, just the process.

    • @somerandomguy000
      @somerandomguy000 3 года назад

      For fib, dynamic programming is the way to solve the problem we introduced ourselves when we went from the classic procedural to the recursive solution. And then bottom-up is just going back to procedural but adding an extra linear space complexity

    • @jaylanlee945
      @jaylanlee945 3 года назад +6

      wasn't really the point of the video but since we're on it, you can also calculate the fibonacci number using the following formula:
      f(n) = (((1+sqrt(5))/2)^n - ((1-sqrt(5))/2)^n)/sqrt(5)
      this should have constant time complexity
      it's unreadable as fuck but whatever

    • @ranjim
      @ranjim 3 года назад

      @@jaylanlee945 yeah its a math way around

    • @LaysarOwO
      @LaysarOwO 2 года назад

      you actually dont need a temp var:
      b += a
      a = b - a

  • @vidyaranyatj7306
    @vidyaranyatj7306 6 лет назад +24

    Smart, Humble and Simple. You're the best my man.

  • @Lillshad-space
    @Lillshad-space 2 года назад +11

    Cs dojo am learning here in Kenya and I find how you teach, quite suites me well, keep it up helping others like me....

    • @kells9k
      @kells9k Год назад

      that country and all the "people" there are disgusting

    • @brianmuhia2955
      @brianmuhia2955 Год назад +1

      am also from kenya

  • @vendels4154
    @vendels4154 6 лет назад +9

    I must say, this is a very nicely done video, the example problem is simple enough to grasp the concepts for DP beginners like me, but also complex enough to demonstrate the usefulness of it and also impact of the different complexities. I have always had a hard time understanding recursive solutions (my brain just tends to get overwhelmed from it), but after this I actually feel I have a better understanding.
    Thank you for making this!

  • @VideoNOLA
    @VideoNOLA 5 лет назад +5

    Wonderful and helpful example! Of course, as a mathematician, my first instinct is to Google "explicit function for nth term of Fibonacci sequence", which yields either the Binet formula, or the more succinct alternative F(n)=⌊φ^n/√5 + 1/2⌋, where φ=(1+√5)/2 is the so-called golden ratio. Most recursive functions can indeed be rendered explicitly, though it's not always obvious or easy how to accomplish this.

  • @PrasannDeshpande
    @PrasannDeshpande 3 года назад +1

    This is the first time ever that I have gone out of my way to like a video. Had to open another chrome with a personal Google account(the school account won't let me log in), find the video again, and like it. Needless to say, the video is just excellent!

  • @sakshijuyal9877
    @sakshijuyal9877 5 лет назад +27

    The way he has explained is simply amazing....

  • @domainxh
    @domainxh 6 лет назад +3

    I migrated from aerospace engineering background to cs roughly two years ago. I can code, but doesn't know much about cs fundamentals. I learned quite a bit watching your videos. Keep up the good work!

  • @canastrao
    @canastrao 5 лет назад +21

    You know how to teach people. It is really helpful.

  • @alotlikees
    @alotlikees 4 года назад +2

    Your super power is turning abstract concepts into chunks that my brain can consume,.. programming alchemy. Gold!

  • @anoops7974
    @anoops7974 6 лет назад +12

    i am a 3rd year computer science student , although i have already done with data structures and algorithms courses . i have never really felt understood . this video helped me so much , hope you will continue doing these to help students like me , i am definitely going to share your works on my class group . please never stop adding more videos , i am looking forward to all your upcoming videos .
    i love these so much , thanks a lot once again

  • @davidranney8723
    @davidranney8723 5 лет назад +4

    This is an excellent explanation. You chose a problem which is just complex enough to illustrate the technique. You methodically go through the steps and explain each step completely. I wish more tutorials were like this one. Well done!

  • @lynnguyen8652
    @lynnguyen8652 4 года назад +7

    I've reviewed several DP resources, and none of them sit that well. Yours is the best and easiest to understand. I wish I started with your video. Would've saved so much time!

    • @minhthinhhuynhle9103
      @minhthinhhuynhle9103 3 года назад

      This is much better: ruclips.net/video/oBt53YbR9Kk/видео.html

  • @JoCS11152
    @JoCS11152 2 года назад +1

    For free... dude, u are goat. People these days dont know how much technology, with a good use and being aware of his cons, can help.

  • @ricardoorellana1168
    @ricardoorellana1168 5 лет назад +14

    In the recursive calls of fib, you forgot to add the memo list, it should be:
    *result = fib(n-1, memo) + fib(n-2, memo)*
    Great video and explanation!

    • @wangsherpa2801
      @wangsherpa2801 4 года назад

      You are bit a confused friend. Watch the video again there're two functions one takes one argument and another one takes two.

    • @nitinat3590
      @nitinat3590 3 года назад +3

      @@wangsherpa2801 In the memoized solution when the recursive call is being made memo needs to be passed

    • @Vens8
      @Vens8 3 года назад +2

      That was just a pseudocode so it wasn't necessary. He did that during the demo of the actual code.

  • @Kokurorokuko
    @Kokurorokuko 2 года назад

    The fact that the most efficient solution is so freaking simple is amazing.

  • @abraiyan7984
    @abraiyan7984 3 года назад +8

    This is mind-blowing! Thanks, Dojo.

  • @di3g04
    @di3g04 4 года назад +1

    Man, the best explanation in RUclips, I've been trying to better understand a topic for about an hour.

  • @pweddy1
    @pweddy1 5 лет назад +4

    This just reinforced my feeling on recursion! When efficiency or memory usage is important, find a different solution! The bottom up approach was what I got out of analysis of algorithms 25 years ago! But people today don't seem to be taught that today?

    • @momonga.
      @momonga. 5 лет назад

      Idk I just had my algorithm design final today and we had two DP problems that totally destroyed me 😭

  • @hyrummoses1851
    @hyrummoses1851 3 года назад

    I'm a sophomore in CS and was struggling to understand dynamic programming and how it differed from regular recursion. After watching this video it makes perfect sense and I can now implement it in my future programs. Thank you so much!

  • @cwagnello
    @cwagnello 6 лет назад +3

    At about the 6:30 mark when talking about memoization the array never gets the values of fib(1) or fib(2). The way the code is set up it falls through and then returns fib(1) and fib(2) at the check for n == 1 or n == 2. The comparison at the end is a nice touch to teach about a potential drawback of a recursive solution.

  • @akankshasingh3075
    @akankshasingh3075 6 лет назад +1

    This is the best explanation of DP on RUclips. Have exam in 2 days and this really helped me in understanding basics. Thanks for this. Keep making more such videos.

  • @kirtipurohit1237
    @kirtipurohit1237 4 года назад +8

    hey! I'm a first year student and I love programming alot. These topics aren't taught to us in college yet but my love for programming and computer science brings me here . Please make more videos with new concepts and tips for students who have just started programming !!! Thank you!

  • @thenotebubble
    @thenotebubble 6 лет назад +1

    This is by far the clearest explanation of dynamic programming I've seen! It's a topic I keep having to relearn every now and then but I think I finally truly understand it now.

  • @mrhyperboss4204
    @mrhyperboss4204 7 лет назад +42

    Really amazing I saw your channel when it was 10k now 137k with in a year congrats

  • @mereel77
    @mereel77 4 года назад +1

    Struggling to understand DP...this was a fresh perspective, really helped, thanks.
    The call-out to skip recursion and just fill in the table left to right is a game changer.

  • @roots6770
    @roots6770 7 лет назад +70

    After that make 10-12 videos giving more examples of it. That would be awesome 😃✌

    • @savithak.6516
      @savithak.6516 4 года назад +1

      Can you please cover the pattrens discussed in this course www.educative.io/courses/grokking-dynamic-programming-patterns-for-coding-interviews?affiliate_id=5457430901161984

  • @keritans
    @keritans 6 лет назад

    Took Algorithms and read books about this and didn't know exactly what it was. Watched this video and now I'm an expert! Love the detailed explanations!

  • @AkshayNehe_invincible
    @AkshayNehe_invincible 5 лет назад +4

    Great explanations! Thanks for these awesome videos.
    Similar to the call stack overflow issue with the recursive solution, I was thinking about the extra memory utilization by the bottom-up approach.
    The presented solution uses about O(n) memory but in each iteration we only need to access 2 elements from the array so we can even implement this using constant space by storing only previous two values instead of all values from the start.
    So savings on both space and time 🙂

  • @nazli_muradova05
    @nazli_muradova05 Год назад

    I'm 9th grade student and i've started to learn python for 3 month, came across with using dp for solving eolymp tasks,this video helped me to understand the whole concept! Thank you!!!!!!!

  • @EDemircivi
    @EDemircivi 5 лет назад +4

    amazing explanation, thanks :) keep up the good work man!

  • @kitgary
    @kitgary 3 года назад

    I have failed for many programming interviews as I don't know how to solve DP problems. This video is really life saving!!! Thank you so much!

  • @pranavmishra9366
    @pranavmishra9366 5 лет назад +4

    lots of love from India brother, you are awesome in explaining things in detail. god, bless you.

  • @nadamson14
    @nadamson14 2 года назад

    This is THE best DP video on RUclips! The example you use is very simple but you really helped me understand what this approach is all about

  • @jaspersasa6868
    @jaspersasa6868 6 лет назад +12

    THANK YOU SO MUCH : well explained

  • @RaineWilder
    @RaineWilder 3 года назад +2

    In the bottom up approach you can get the Space complexity down to only O(3) as you don't need to store the whole array, just the last 2 values calculated, and only where n>=3, when n

  • @shourya436
    @shourya436 7 лет назад +65

    Sir,please take a question from codechef long challenges that are hard and based on dynamic programming,graphs,segment tree and more and please explain us that solutions...it would be very kind of you if you could help😃

    • @simplifiedsolutions2297
      @simplifiedsolutions2297 7 лет назад +2

      yes sir plz help

    • @derpina615
      @derpina615 7 лет назад +8

      Yes agreed. Please pickup a harder example. Make this a series!

    • @backslash8874
      @backslash8874 5 лет назад +1

      Yup that would be great...

    • @VivekSharma-nj3xd
      @VivekSharma-nj3xd 5 лет назад +1

      Yes!! Please do sir

    • @AnandPandeyHere
      @AnandPandeyHere 4 года назад +1

      I post solutions of famous coding interview problems with proper explanation and codewalk. If anyone's interested can have a look at the videos. It will be really helpful for those preparing for placements.

  • @KalimbaRlz
    @KalimbaRlz 3 года назад

    the best explanation of dynamic programming I've ever seen

  • @dipikamandal5334
    @dipikamandal5334 7 лет назад +33

    It's so simple. Thanks 😊
    Please make more videos on dynamic programming.

  • @praveenchouhan6388
    @praveenchouhan6388 4 года назад

    the best explanation i have seen on DP till now which covers all aspects of DP - naive, memoized and bottomup, excellent work!!!!!!!!!!!!!!thanks

  • @roshanmahtir940
    @roshanmahtir940 6 лет назад +7

    0:40 Fibonacci sequence starts with 0, 1 by the way.

    • @xCwieCHRISx
      @xCwieCHRISx 4 года назад +2

      learned it the same way. F(n) = F(n-1) + F(n-2) and F(0)=F(1)=1 defined for natural numbers including 0 to be mathematical correct ^^

    • @krupt5995
      @krupt5995 4 года назад

      Fibonacci is a sequence as its name defines so, thus that it is a function with a domain of the Natural Number's set, which means that what you are saying is true but in sequences, 0 is not usually used to avoid complexity. That's why often mathematicians use these elements S1, S2, S3...Sn.

  • @devenderbhatt421
    @devenderbhatt421 5 лет назад +2

    By seeing ur video and ur explaination ,it obvious that you have a deep knowledge of dp.

  • @rahulr6723
    @rahulr6723 4 года назад +18

    in the third last line, while calling "fib(n-1) and fib(n-2)", we would have to pass memo right. meaning "fib(n-1, memo) + fib(n-2, memo)" I think this code will show errror.

    • @ivandrofly
      @ivandrofly 3 года назад

      Yup

    • @osacognitive3020
      @osacognitive3020 3 года назад

      Actually, wouldn't it need to be a global variable? Passing in memo wouldn't help us "remember" the result, would it?

    • @osacognitive3020
      @osacognitive3020 3 года назад

      Never mind, just realized it depends on whether we are passing by value or passing by reference.

    • @rahulr6723
      @rahulr6723 3 года назад

      @@osacognitive3020 Once you declare a data structure globally you dont need to pass that every time. Here it will show error because the fib function takes 2 arguments but in the last 3rd line only one argument is passed.

  • @RahulGodse
    @RahulGodse 5 лет назад

    I learn things faster by watching rather than reading and you are simple awesome.

  • @danielchang2487
    @danielchang2487 5 лет назад +6

    Can anyone explain why 2n+1 for time complexity in 8:19 ?
    Let's say we run fib(3,memo), then there would be 3 times the function getting called ( fib(3), fib(2), fib(1) ), NOT 2n+1 = 7 ....

    • @danielchang2487
      @danielchang2487 5 лет назад

      @Chris Blackwell still don't get it... :( can you give an example? is number of operations for fib(3,memo) = 2n+1 ?

    • @joshking9537
      @joshking9537 5 лет назад

      @@danielchang2487 Did you find out?

    • @danielchang2487
      @danielchang2487 5 лет назад

      @@joshking9537 not yet..

    • @metalore
      @metalore 5 лет назад +2

      I noticed that too. I think it should be 2(n-2)+1 for n>1. The n-2 is because the first 2 indexes don't call the recursion.

    • @arjun1194
      @arjun1194 5 лет назад

      ​@@danielchang2487 imgur.com/a/7x0yQiw

  • @beltusnkwawir2908
    @beltusnkwawir2908 4 года назад

    I have always believed simplicity is fundamental basis for explaining and understanding any complex concepts. You just proved that here. Thanks @CS Dojo explicit and easy to follow video

  • @sergey198
    @sergey198 5 лет назад +153

    You don't even need an array in your "bottom up solution"

    • @YassineAbdulRahman
      @YassineAbdulRahman 5 лет назад +4

      can you calculate it on the fly without array?

    • @sergey198
      @sergey198 5 лет назад +76

      @@YassineAbdulRahman of course, you only need two variables storing two previous values.

    • @chiragasourabh6044
      @chiragasourabh6044 5 лет назад +29

      Yeah exactly .. instead of filling up an array with n number of items u can use two variables storing previous two states and on every iteration update them . As temp = v1 , v1=v2 ,v2+=temp

    • @MrNettoon
      @MrNettoon 5 лет назад +2

      @@chiragasourabh6044 That's exactly what i thought but its O(n) is bigger

    • @mohammedfaour4136
      @mohammedfaour4136 5 лет назад +9

      if an if-statement is before the for loop stating the if bottom_up[n] exists then i can cut the time because i can return the value instanty without entering the loop , this is useful if i have more than one call for the function, most useful in competitive programming

  • @JCho-pi5jz
    @JCho-pi5jz 3 года назад +1

    I rarely give compliments bc I always have something that bothers me about the video (i don't compliment tech videos) but WOW!!!! you're exceptional. your videos are AMAZING!!!! I have a physics degree went into DS/ML like most of us do and now I'm switching to CS. Your videos are so clear cut your speech is impeccable, perfect pace, sound and visual, and a nice flow. I can tell you did multiple takes or practice (if not that's REALLY impressive). combined with all you have a great knowledge base and present it *flawlessly*. Most of my interviews were things you covered and your videos are also the right amount of time. It's short enough to maintain interest and long enough to give you thoroughly. It's kind of a shame that people will only really tune in during interviews or when they are learning CS/DS. You structured it well with depth and breadth. You go into a great overview and then have videos that go into more specific which is WAY better than having one long video. I wish I saw these videos before just doing a bunch of leetcode problems. It's a great clean organized way of explaining the tools. I didn't know how many leetcode problems were enough but this is great! I used your info so much on interviews. It's so memorable and keeps my attention (I have ADHD so I'm really picky with videos). I'll definitely share your channel with people interviewing or anyone new to coding. If you decide to leave RUclips please keep these videos up. Also, you don't have that annoying "Aren't you amazed how smart I am?" arrogant vibe. You have a very humble, enthusiastic energy. Okay, this comment is way too long it's kind of creepy, but I'm a girl so how dangerous can I be? I just really wanted to let you know your videos are powerful and I really appreciate the time you take to edit them, it makes watching/learning so much easier. I know it's a lot of effort and it might not be obvious to people watching bc we're so focused on learning but I thought you should know it sets you apart.

  • @blackraven6049
    @blackraven6049 3 года назад +3

    Can all DP algorithms be implemented with a bottom, up approach?

  • @ethansodaro3945
    @ethansodaro3945 3 года назад +1

    oh man...You literally nailed all that stuff in a few! A bigggggg time appreciation from me.

  • @umangchaudhary18
    @umangchaudhary18 7 лет назад +15

    Make videos for more complex programming questions (generally asked in interviews and technical online tests) which can be done by dynamic programming.

  • @brieananichole
    @brieananichole 5 лет назад

    You are my hero, the difference between the recursive approach vs the bottom up approach is incredible. Thanks for making these ideas so easy to understand!

  • @shugabaabrahamwuta1833
    @shugabaabrahamwuta1833 4 года назад +8

    When you called fib(n-1), did you leave out the second argument memo on purpose?

    • @sr_snehil
      @sr_snehil 3 года назад

      That was not the original code... check the original code in the description. There, he made two different functions fib() and memo()

  • @hind2202
    @hind2202 2 года назад

    Thank you. I really couldn't understand the difference between the 3 approaches from textbooks until watching your video.

  • @asdf-od5nm
    @asdf-od5nm 7 лет назад +6

    Make some programming video on your pc

  • @ForgetNetThrottling
    @ForgetNetThrottling 5 месяцев назад

    I have a masters in computer science, and this is the first time I've seen this concept explained this well. Had you been my prof way back, I'd definitely have gotten better funding in grad school!

  • @lesterdale7276
    @lesterdale7276 5 лет назад +17

    YK I love your channel, however I am always disappointed when everyone uses Fibonacci as an demonstration of dynamic programming. Could you please offer a different application of this programming technique

    • @plouf1969
      @plouf1969 5 лет назад +2

      I agree - there are a couple of examples that are not that complicated, but have real applications, and show the challenges met when doing dynamic programming.

  • @amith89rm
    @amith89rm 3 месяца назад

    My Bachelors would have been a lot more awesome if I had a teacher like this guy!! Great explanation. So glad I found this channel!!

  • @echtcipher6682
    @echtcipher6682 5 лет назад +3

    What is bottom up approach in programming?

  • @ankitadey9040
    @ankitadey9040 6 месяцев назад

    I was so confused reading the university notes on DP. But now after this video, it all makes so much more sense. I've learned a few algorithms using DP but it's mostly because I understood the logic somehow, but as for DP, I didn't try to understand that particular concept much. Now I feel more confident about it. Thanks a lot!

  • @lokeshsivakumar3927
    @lokeshsivakumar3927 5 лет назад +5

    Help! as I am getting:
    Traceback (most recent call last):
    File "/Users/lokesh/Downloads/fibonacci.py", line 28, in
    fib_2(n,memo)
    File "/Users/lokesh/Downloads/fibonacci.py", line 15, in fib_2
    if memo[n] is not None:
    IndexError: list index out of range

    • @aashishmehtoliya5800
      @aashishmehtoliya5800 5 лет назад +1

      just do n-1 in memo[n] in place of n , because array starts with index 0 and memo[n] covers 0 to n-1.

  • @sodium2496
    @sodium2496 5 лет назад

    Hi, Great video.
    For bottom-up solution your space complexity is O(n) since you create an n-array. You don't need to store all the values. You just need n-1 and n-2, you could store them in 3 item array and update the values with each iteration. So time-complexity would be O(n) and space complexity would be O(1)
    Here's the code;
    public double fib(int n) {
    if (n

  • @NikhilSinghNeil
    @NikhilSinghNeil 5 лет назад +7

    didn't understand the part starting from 7:43 when the explanation for the second 'if' starts, explainig why it is n times

    • @muhammadrahmatullahrahman1534
      @muhammadrahmatullahrahman1534 4 года назад +2

      it is n times because we don't need to call a recursion anymore since we already have the result of fib(n) inside the memo, that's why after the else block we do the operation to input result into memo

  • @MaXxamillion00
    @MaXxamillion00 4 года назад

    Really impressed with the video. I liked the way you presented code that you had already written, line by line, while explaining the code. It was really clear and not overwhelming.
    Thank you for making this!

  • @salmanfarooq8570
    @salmanfarooq8570 5 лет назад +6

    aaaaah!
    "computation"!
    not competition!
    had me confused there

  • @luckydice5520
    @luckydice5520 3 года назад +1

    Took me a while to fully grasp the entire video but regardless I got it all now. Use this as a friendly reminder that smartness is not what matters but what does is the decisions you make to keep trying because you will get it done.

  • @amishashukla1944
    @amishashukla1944 5 лет назад +3

    Amazing video.....I love your videos. They are really helpful 😇.....Keep going, more power to you🎉✨💪🔥

  • @SuineXYT
    @SuineXYT 4 года назад

    Thank you very much for your video. It was clearly explained, and much easier to understand than my college textbook. It took you 5 minutes to help me understand what I couldn't in a few hours of reading. Thanks!

  • @MegaMazenko
    @MegaMazenko 7 лет назад +37

    Your code for the memoization solution is incorrect. You have result = fib(n-1) + fib(n-2), where you should have result = fib(n-1, memo) + fib(n-2, memo)

    • @rohanshah7446
      @rohanshah7446 7 лет назад +1

      Mazen Abusharkh isn't it simply better to declare memo as global and never pass it...?

    • @MegaMazenko
      @MegaMazenko 7 лет назад +1

      Rohan Shah, at 6:55 YK has
      else:
      result = fib(n-1) + fib(n-2)
      where his function is defined as
      def fib(n, memo):
      And yes, it is better to declare it globally and never have to pass it as a function arg

    • @varesz9311
      @varesz9311 7 лет назад +1

      Mazen Abusharkh checked the comments only to see if anyone else recognized it :D

    • @kenhaley4
      @kenhaley4 7 лет назад +13

      The actual code at 12:37 is correct. Also, passing the array as an argument is no big deal if it's passed by reference. Some people argue against the use of globals wherever possible.

    • @namlehai2737
      @namlehai2737 7 лет назад

      Not making everything global is a good habit. But in this case its ok

  • @zihanqiao2850
    @zihanqiao2850 2 года назад

    Clear explanation with an easy example. I really love the coding part and show the time difference!

  • @nickharalampopoulos
    @nickharalampopoulos 5 лет назад +3

    Great explanation! Thanks. One error though. fib(3) = 2 because Fibonacci series starts with 0, 1 not 1,1. So it is 0, 1, 1, 2, 3, 5, 8 etc. One of the many sources www.mathsisfun.com/numbers/fibonacci-sequence.html

  • @RumeshEranga
    @RumeshEranga 5 лет назад +1

    Wish your channel was available when I did my undergrads. Great stuff.

  • @jjfrancay4544
    @jjfrancay4544 7 лет назад +4

    Hey YK! What is the best book/textbook to learn programing and basic CS?

    • @aizazchaudary
      @aizazchaudary 7 лет назад

      JJfrancay there's plenty of books you can find on Amazon but I highly recommend something like Codeacademy. Very good resource for basic cs.

    • @gildardorosas8587
      @gildardorosas8587 7 лет назад

      CS is all about algorithms. The bible in CS is: Introduction to Algorithms www.amazon.com/Introduction-Algorithms-3rd-MIT-Press/dp/0262033844. Disclaimer this book is hard.

  • @BlaqueT
    @BlaqueT 7 месяцев назад

    This was a great quick intro to dynamic programming! I feel like I'm prepped with enough basic understanding/questions to go into my upcoming lecture with curiosity instead of fear :) thank you!

  • @stc2828
    @stc2828 5 лет назад +7

    14:07, the largest number I ever seen

  • @b_1729-j8j
    @b_1729-j8j 5 лет назад

    Earlier I thought DP is very hard concept,but after watching this video,I got interest in DP,thanks CSDojo

  • @somerandomguy000
    @somerandomguy000 3 года назад +26

    Minor: Actually fibo starts with 0 and 1. Not with two 1s

    • @William_Clinton_Muguai
      @William_Clinton_Muguai 3 года назад +3

      It starts with: 0, 1, 1,...etc

    • @user-jk2po3cz7d
      @user-jk2po3cz7d 3 года назад +8

      @@William_Clinton_Muguai Well zero is optional. It adds nothing to the sequence.

    • @stanmann571
      @stanmann571 2 года назад

      The naive fib starts zero,one. The fib method can be used with any 2 seeds with interesting and amusing results

  • @taylormcneil2285
    @taylormcneil2285 5 лет назад +1

    This video was super helpful! The first time I saw dp, it was explained in a very complex way. This is so simple!

  • @matthewsmit5930
    @matthewsmit5930 5 лет назад +3

    GIVE ME YOUR PINGUIN

  • @Shingorani
    @Shingorani 4 года назад

    Excellent explanation. This is the best channel I've found for preparing for coding interviews!

  • @russellandrady
    @russellandrady 4 месяца назад

    Wow. Great. Watched another from a channel called Inside code. Your one is far better.

  • @user-ww1wh3wz5d
    @user-ww1wh3wz5d 4 года назад

    dude you are a legend. helped me so much with my dp project. so much more helpful than my prof

  • @yanistancheva3076
    @yanistancheva3076 4 года назад

    2 hour lecture explained in 14 minutes, thank you

  • @Saurabh1337
    @Saurabh1337 3 года назад

    The way you explained this was delightful. Thank you!

  • @umeshkadam113
    @umeshkadam113 3 года назад

    The video is great. You explained the concept very quickly that what exactly it means in a simple language without wasting time on other things.

  • @navjeetkaur5742
    @navjeetkaur5742 4 года назад

    U r the best teacher tough topics become easier when YK teaches. Thank u so much. God bless u.

  • @mohamedsalem9210
    @mohamedsalem9210 3 года назад

    Bottom up is absolutely my favorite and most simple and efficient of them.

  • @naveenkudupudi
    @naveenkudupudi 5 лет назад

    You are doing a great service to humanity. Thank you.

  • @stefanmendoza3537
    @stefanmendoza3537 4 года назад

    This made the concept so much clearer for me. Thanks for making this video!

  • @dcharith
    @dcharith 6 лет назад

    Who the heck disliked this??? This is an excellent explanation!