B-trees in 6 minutes - Deletions

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

Комментарии • 52

  • @flower77769
    @flower77769 2 года назад +37

    Don't get discouraged. Please keep uploading these!

  • @MT-oo8sx
    @MT-oo8sx Год назад +12

    Your B tree and red black tree video I think are the best that I can find on RUclips. Please keep uploading these video. I like your teaching a lot.

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

      Thank you! More coming. Hope the audio was OK, I had some issues in there. I appreciate you watching!

    • @MT-oo8sx
      @MT-oo8sx Год назад +1

      @@MichaelSambol The audio is very clear but I think louder a little bit will be great!

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

      Cool, will make adjustments!

  • @amanbisht579
    @amanbisht579 Год назад +47

    in the case 3b can't we just directly delete 17 as it won't break any of the properties of b tree??

    • @EckiSchmecki
      @EckiSchmecki Год назад +5

      yes, but he decreased the height of the tree while deleting 17, improving the tree over all.
      this was not possible before, because the leaf with 17 in it was bigger (size 4) than 2t-1 (size 3) for a tree with t=2

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

      It is essentially done to decrease steps in the future because we don't really know how many keys there will be before we reach that node(if that has 2 then we will have to do the same operation but making it much more complicated, travelling down a tree is much easier than to go up

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

    Excellent vids on b trees, you've come in clutch for pretty much my entire CS degree now haha, from first year all the way to my final now. Appreciate it a tonne. Just one important thing about this algorithm to note to most people reading (I believe it wasn't mentioned in the video but I may be wrong & too lazy to check lol): deletion can only happen with a case 1, every other case really just sets up the b tree in a "neater" format and recursively calls delete until a case 1 is invoked and the desired element can be deleted. Another thing that took me some time to realise - for case 2a and 2b -> you do not replace with simply the left/right most element of the righ/left child but you must traverse and actually find the immediate predecessor/successor to the element you're trying to delete. Anyways, best of luck to everyone on their DSA journeys

  • @murathankayhan1494
    @murathankayhan1494 Год назад +4

    I watched your whole playlist for B-Trees. They are very helpful. Good job Michael! Wish me good luck for my data management exam on tomorrrow :)

  • @sanjaykg10
    @sanjaykg10 2 года назад +5

    The legend and saviour is back 😇

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

    thank you MIchael, watched all the playlist, good teaching

  • @adeven2226
    @adeven2226 3 дня назад

    4:37 what if root had more than one key? would we still move only one key from the root, or all of them?

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

    Was looking for review before my final tomorrow, this clears up everything! Thank you!

    • @Learn-jz1sc
      @Learn-jz1sc Год назад

      How’d it go?

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

      @@Learn-jz1sc There was only 1 question on B trees lmao, otherwise well

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

    t=m/2
    where maximum nodes can be m-1
    So for m=5 max nodes 4 and min nodes=t=2

  • @adeven2226
    @adeven2226 3 дня назад

    4:09 why can't we just delete 17 from the leaf? After the deletion keys amount in this node will equal to 3 (which is equal to t)

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

    Thank you, your code is so clean and clear! Yet, I'm still not clever enough to understand all...

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

      Which part do you have questions on and how can I help ? 🙂

    • @Learn-jz1sc
      @Learn-jz1sc Год назад

      2:20 Bookmark

  • @akam9919
    @akam9919 Год назад +6

    I don't get why we care about the parent in the recursion path in 3b. Wouldn't the tree still be perfectly valid?

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

      we would have 6 siblings, but only 4 keys, so it means we have to have 5 keys

    • @ojaskulkarni8138
      @ojaskulkarni8138 22 часа назад

      ​@@mizit8864why so?

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

    do we check this recursive if keys = min_keys for the root node as well? because technically there is nothing to shift, so nothing would change? Also what if that node we need to shift into is even deeper, do we shift then all the siblings' keys and every key in every node that's above? And If resulting node has too many keys we just do median and move up until the property is satisfied?

  • @RishikeshKasireddy
    @RishikeshKasireddy Месяц назад

    in case 3b how are you sure that if u merge it wont violate upper bound property cause there maybe 2 or 3 keys in root right?
    Please Clarify

  • @Maxerom24
    @Maxerom24 9 месяцев назад

    Great video. It would have been great if you can visualize the code functions line by line. Nevertheless, This video is great.

  • @ArkadeepMukherjee-x5h
    @ArkadeepMukherjee-x5h 4 дня назад

    Great video❤

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

    Why and what did we do in case 3B? I mean I don't understand the need to merge the two nodes! please help !!!!

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

      We made the assumption in the beginning that we only call delete on a node with t keys. The delete method is recursive and starts at the root. On our way down to delete key 17, we encountered a node with t-1 keys, hence the need for case 3B.

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

      @@MichaelSambol The node has four keys and the t = 3 so 3-1 = 2 no?

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

    What happened to the reverb? It gave you a ton of gravitas! (Thanks for the great videos btw).

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

      I moved and had some audio issues 🤦🏻‍♂️
      Thank you!

  • @mizit8864
    @mizit8864 5 месяцев назад +1

    why do we care about root in 3b ? explain someone pls

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

      ahaa, cuz we would have 6 siblings, but only 4 keys, so it means we have to have 5 keys

  • @omerfaruk4579
    @omerfaruk4579 5 месяцев назад +1

    thank u Thad Castle

  • @zerosypher0114
    @zerosypher0114 2 года назад +2

    The series is over tho :(

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

    May you explain graphs? 🙏

  • @energy-tunes
    @energy-tunes 4 месяца назад

    you just know shit like this takes 2k loc to implement efficiently when even high level explanation isnt trivial

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

      github.com/msambol/dsa/blob/master/trees/b_tree.py 312 loc ;)

  • @amjafdamer3960
    @amjafdamer3960 День назад

    can someone explain 3b stage

  • @kalyansathvik8009
    @kalyansathvik8009 9 месяцев назад

    binomial trees and heaps also please

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

      Here's my plalist on heaps: ruclips.net/p/PL9xmBV_5YoZNsyqgPW-DNwUeT8F8uhWc6

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

    good video

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

    what does t stands for :/ ?

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

      Go back a few vids in the playlist, I explain it in the intro video

  • @khalifacastaway6356
    @khalifacastaway6356 2 года назад +2

    Hard

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

    Slight formal error at 3a: it should be 2*(t-1) not 2t-1