Red-black trees in 5 minutes - Insertions (strategy)

Поділитися
Вставка
  • Опубліковано 21 гру 2024

КОМЕНТАРІ • 159

  • @datanaut9519
    @datanaut9519 7 років тому +136

    I'm confused. In case 2, you have a red child with a red parent.

    • @MichaelSambol
      @MichaelSambol  7 років тому +117

      That's my fault. Case 2 is essentially a partial fix that Case 3 ultimately fixes. In other words, Case 2 gets you closer to the solution, and Case 3 finishes the job by correcting the remaining violations. I should have been more clear. If you watch my example video, I hope it makes sense.

    • @marieh7957
      @marieh7957 7 років тому +8

      Case 2 needs a double rotation. First right rotation between(A,Z) and then left rotation between(B,Z). Triangl is always a double rotation. Line just one rotation. After all Z is root and black, B and Z are childs of Z and red. C is black and a leaf.

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

      I think that before insert 'z',it is NIL node,we have to insert 'z' which must be red ,so a red child with a red parent

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

      @@marieh7957 Can't you just color Z black after performing the one rotation in the video?

  • @yan-amar
    @yan-amar Рік тому +4

    Cannot thank you enough for these four simple scenarios. Just implemented it listening to your video a few times and it magically works (tested all cases).
    Now on to node removal.

    • @MichaelSambol
      @MichaelSambol  Рік тому +3

      Super awesome to hear this! Thanks for watching the videos.

  • @Toashh
    @Toashh Рік тому +53

    1:46 bro was smiling when he said that 😂

  • @benhiggins9515
    @benhiggins9515 2 роки тому +16

    these are probably the best tutorials on youtube. They are so short, but they dont leave out any of the complexity! Thanks!

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

    The doctor at the university explained it in an hour and I did not understand it. you are here. you explained it in a few minutes and I understood everything from you. Thank you very much.

    • @MichaelChiang-i2d
      @MichaelChiang-i2d 7 місяців тому +2

      me too,and I am from China

    • @omarabusnineh2002
      @omarabusnineh2002 7 місяців тому +1

      @@MichaelChiang-i2d welcome, I'm from Jordan

    • @johnny5941
      @johnny5941 2 місяці тому

      @@MichaelChiang-i2d Are you teochew, also your surname name is not pinyin

  • @LOVE-kf9xi
    @LOVE-kf9xi 3 роки тому +5

    Thank you for the video, you were really clear and pointed out solid points when rotating a node!
    Sad to see you stopped uploading videos!
    For those who are struggling with the pseudocode:--
    0.The RBFixup algorithm only starts when z's parent is red, then case 1,2,3 follows. KEEP TRACKING THE VALUE OF Z.
    1. The value of z changes whenever case 1 and case 2 occurs.
    2. Recoloring process takes place only when case 1 and case 3 occurs.

  • @stephenhowe4107
    @stephenhowe4107 4 роки тому +57

    I think you are missing 2 things
    1. Any insertion will always occur at leaf nodes. Apart from the first node where it will become the root, this new node will have a parent whose left or right child where inserting is a nil pointer.
    2. If the node you just inserted (which is red) has a black parent => no further repair is necessary, it is still a red-black tree.
    Otherwise we move onto the cases you discuss.

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

      thank you.

    • @medikoo
      @medikoo Рік тому +4

      I think it's not missed, at ua-cam.com/video/5IBxA-bZZH8/v-deo.htmlsi=yeiuXO7fadUYHvb1&t=90 it's pointed that we're applying fixes *only* if there's a violation, and the only possible violations are: (1) if we're inserting red root (2) if we're inserting into red parent
      Conclusion: if inserting into black parent - there's no violation, so no need to do anything.
      Also in attached algorithm, in fixup function we follow with fixup only if we find the parent to be red (or being at root)

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

    crisp and clear explanation. super . Great effort. thanks

  • @676005ga
    @676005ga Рік тому +6

    In case 2 at 3:29, after rotation, Z and A are red, is that ok?

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

      I think that's an error. Red nodes would need to have black children so I think we have to recolor A

    • @paulruvolo3059
      @paulruvolo3059 8 місяців тому +2

      Another way to think about it is that when you get to the end of his explanation of case 2, you are immediately in case 3. If you then execute that logic, your tree will be fixed.

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

    Best video series to understand red black tree

  • @blablabl9660
    @blablabl9660 7 місяців тому +3

    I might just be stupid but in the tree at 4:25, how can we say it's a black-red tree ? if we add the nil nodes to C, D and Z, the black height for the nodes to the right of A will be 1 and for the nodes to the left of A it will be 2. Or am I wrong ?

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

      See the pinned comment. Hope that helps

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

      @@MichaelSambol I was talking about case 3 not case 2, i'm wondering about the way we're counting the number of black nodes encountered, and not two consecutive red nodes.

  • @NamTran-zp6ub
    @NamTran-zp6ub 4 роки тому +10

    for case 2, I don't quite understand the solution. After the rotation, Z and A are still red. Does that not violate the red-black-tree property?

    • @stephenhowe4107
      @stephenhowe4107 4 роки тому +12

      It does. But case 2 transforms the problem into case 3. Afterwards you apply case 3 which also involves recolourations and it is this final step that sorts out the tree. Case 2 make sure that the node that requires repairing is no longer on the inside but on the outside. You cannot repair the tree if the node is on the inside. Note, the parent of Z is now regarded as the new Z, then case 3 applies.

    • @dmitryr9613
      @dmitryr9613 9 місяців тому

      @@stephenhowe4107 THANK YOU, mf excluded the critical "obvious" my ass context just like a university lecturer

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

    Thanks! I spent hours to learn this things. But your video gives me the final knowledge, so I'm trusting myself I can do this

  • @BelegaerTheGreat
    @BelegaerTheGreat 3 місяці тому +1

    2:20 I have to assume that in the case of this being actually just a 4-node tree, the top 3 nodes would be black and the bottom red.

  • @Проекттвояноваядевушка

    Thank you for your video!
    Correct me if I wrong, but at 3:30 you violated property 4: "for each node, all simple paths from the node to descendant leaves contain the same number of black nodes".
    Same violation at 4:25.

    • @MichaelSambol
      @MichaelSambol  8 років тому +39

      You are absolutely correct. These are mostly subtrees (trimmed so there was less clutter on screen); I should have been more clear. Can you look at this video for full examples: ua-cam.com/video/A3JZinzkMpk/v-deo.html
      For instance, at 4:25 Z can and should have children under it. Z and B would have to have the same "black height" for this to be a valid red-black tree. Hopefully my other video clears that up. Thanks for pointing it out!

    • @wesley_khan
      @wesley_khan 7 років тому +4

      The tree at 4:25 can never get created if the tree was made from the first node as a Red-Black Tree

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

      Although it's good to illustrate what would happen with a left son of A (which is NULL in this case)

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

      @@wesley_khan This really explains well. Good one, thanks!

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

    Great explanation! Help me much.

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

    Thanks for this vidoe It is helpful for me and saved me a lot of time and effort.

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

    At 3:30, the red node is having red child, which violates the RBT property.

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

      When you rotate case 2 you create case 3 (line)

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

    Another banger, awesome job man😊

  • @areeburrub
    @areeburrub 11 місяців тому +1

    at 3:30 after rotation rule 3 is being violated shouldn't we recolor after rotation?
    and in case 1 at 2:20 what id Z's parent is black then after recoloring it will violate rule 3 again

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

      Correct.. see the pinned comment. Apologies!

  • @stephenhowe4107
    @stephenhowe4107 4 роки тому +3

    2:35 => B is red because it means the black tree height of nodes from root through C to its leafs has not changed. The swapping of colours of parent and uncle with grandparent preserves black tree height. But what you have not said is that the grandparent needs to be considered as z and the fixups applied again (in fact it could repeat right to the root), because the grandparent might have a parent which is also red and in which case you now have another double red violation. The whole thing stops when the parent of any z is black or the uncle is black (rotations now kick in) or you reach the root node (and if this has been recoloured red, it needs to be recoloured black).

  • @stephenhowe4107
    @stephenhowe4107 4 роки тому +3

    You should Red-Black Tree Delete
    That is more complex. Inserts always occur at leaf nodes but Deletes can occur at any part of the tree.
    Also Inserts have a maximum of 2 rotations, Deletes have a maximum of 3 rotations but both may recolour to the root in repairing.
    Having found the node in the tree => count the children: 0, 1 or 2
    Deal with the simple cases first.
    If the number of children is 0 and the node is red => delete the node, black path count still constant, you are done.
    If the number of children is 1 => then node must be black and child red, no other combinations are valid => delete the node and replace it with the child, the child becomes black. Black path count still constant, you are done.
    If the number of children is 2 => you need to find the immediate successor or immediate predecessor node.
    Immediate successor => look at right child and now follow its children leftwards as far down as you can go.
    Immediate predecessor => look at left child and now follow its children rightwards as far down as you can go.
    I would recommend finding the Immediate successor and then seeing if it is cheap to delete (above two cases)
    If not find the Immediate predecessor and then seeing if it is cheap to delete (above two cases)
    And if not pick one of them.
    Swap the node you really want to delete with immediate predecessor or immediate successor, BUT DO NOT swap the colours. Now you have reduce the problem to deleting a node with 0 or 1 children and when deleted, the tree will still be ordered correctly. If it is an easy case => delete it.
    So what is left to do?
    The hard case: Deleting a leaf node, no children and it is black.
    You delete it but now the black path tree is in violation.
    And basically you work your way towards to root, 1-level at a time.
    Intuitively speaking, restoring the delete situation is a 2-prong stategy:
    (i) You look at a nodes siblings and your parent. You are looking for red-nodes that that can be rotated or recoloured in such a way that the black path count is restored on your side of the tree while maintaining the black path count on the siblings side of the tree. If you can do that => it is over.
    (ii) at the same time, you might find that parent, sibling and siblings children are all black => so what do you do?
    You recolour the sibling as red and retry repairing the tree at parent level, the problem has moved up 1-level
    So what happens if you encounter the root, no red nodes encountered (which is possible, it is a Red-Black tree)?
    Then it is a red black tree. You have introduced a red node in every path by (ii). At the same time, you have reduced the black path count by 1 in every path.

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

    for 3:30 isnt it violating the rule because of two consecutive roots?

    • @LameLame-h2g
      @LameLame-h2g Місяць тому

      Yeah, this dumbass messed it up; I'm sure people THINK that they've learned what their professors couldn't teach them lol

  • @RamSingh-ve1cb
    @RamSingh-ve1cb 6 років тому +2

    Sir in case 3 black height of tree is not balanced

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

    Great explanation ..Thank you so much ..

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

    Awesomee Explaination! Thankssss Alottt brother

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

    How does case 1 violate any rules since A isn't guaranteed to be red by any property of RB Trees? I mean Z's uncle being red doesn't necessarily imply that A is red too, to create any violation.

  • @josepadilla-dv3ld
    @josepadilla-dv3ld 3 роки тому +2

    "As you can see C is Z's uncle" great video but you might have chosen better names for the nodes

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

    Getting z on rhs of tree is ok but b c and d to the lhs of a ??? Aren't they suppose to be bigger than A

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

    this is great but id really appreciate if you added comments to the code to show which cases each block was handling - thanks

  • @塩酸田代
    @塩酸田代 2 роки тому +1

    I feel how you present case 2 and 3 is confusing. It sounds like they are independent, i.e. if (case 2), else (case 3). However, after handling case 2, case 3 definitely will occur. So it's more like you should handle case 2 if it applies, but case 3 is required anyway if uncle is red.

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

    Thanks a lot bro for charming explanation 😊😊😊

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

    Is possible to have a similar video for deletion?

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

    5:12 i saw that pseodocode in "introduction to algorithms" but didn't quite understand that.

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

    Excellent work!

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

    Clean and simple :) Thank you

  • @pragyapatel7335
    @pragyapatel7335 7 років тому +4

    Do you have a video for deletion in Red Black tree? please reply

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

      dude just collect all the values of the tree except the one you want to delete, make root null and add all them back lol

    • @philipnaida
      @philipnaida 7 років тому +15

      Thats a fucking terrible solution

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

      I said lol dude :(

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

      hahahhaha

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

      @@beko_61 hahah i love brute force

  • @madao_desu
    @madao_desu 5 років тому +8

    Didnt realize, 5 min was so Long

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

    In case 1 the structure is a triangle, does that characteristic matter? Because in case 2 it mattered.

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

    thank you Michael~

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

    hope thae same vedio to understand deletions in red Black tree.

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

    At 5:23, is there a "else" missing where it refers to case 3 (after LEFT-ROTATE(T, z))?

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

      I know this old, but if anyone else is curious: The pseudo-code in this book (Introduction to Algorithms) is confusing around if-else statements. Notice they have both elseif and else if, the difference being a space between the words. The elseif is what you would expect. The else if is more like ...} else { if{...} }. It's a subtle difference but matters in this case.

    • @leiffirland-schill5530
      @leiffirland-schill5530 5 років тому

      @@evandoug90 Thank you, that was confusing me as well

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

    Anyone knows what "key" means in the pseudo code?

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

    Thanks for the video. For Case-1, the solution is recolor, but after recolor you have a red root, which is a violation. how do we fix that? Rotation?

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

      In the pseudocode at the end of the video the last line of Insert-Fixup is make root black. So my guess is simply color the root black if it ends up being red

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

    the best explanation i ever seen, thanx

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

    But why at the end of case 2 are there two red nodes aside ?

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

      See the conversation in the pinned chat. I wish I did a better job with the coloring on this video. I was trying to demonstrate the actions and didn't pay enough attention to coloring. In the next example, all the coloring is correct. Apologies for any confusion.

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

    in case 3, you violate the rules for every path from a node to an abitary leave, number of nodes remains the same, which is 2 if we start from A to C (C and his null), and 1 from A to Z (his null only)

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

      See the pinned comment. These are partial fixes (I should have said that in the video). The example video shows full fixes. Sorry for any confusion!

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

    wow, great video!

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

    crazy explaination

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

    For python students, what property would "T.nil" be in the pseudo?

    • @塩酸田代
      @塩酸田代 2 роки тому

      You might already figured it out but just put here if someone has the same question.
      In RB tree, we need nil node when reviewing color in balancing process. Just leaving it as None could make your code more complex. So when defining "Tree.__init__", declare "self.NIL" and assign a tree node which children are None to it. Its parent can be None as well and its value is not important, just give it any number you can identify when debugging. Don't forget to paint it to black.

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

    Can u explain step 8 and 10 of the pseudo code given at the end please

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

      I suppose you're interested in the fixup code and not the insertion.
      Step 8 changes z to its grandparent, to check for new violations that might have appeared when recoloring.
      Then the formating is, i believe, a bit messed up. I think it should be an else, in which there is an if.
      If y is red, do the recoloring (steps 5 to 8)
      If not, then y is black, and we need to check if it's case 2, that's what the if does (it check if it's a "line" or "triangle").
      If it's a case 2, we apply the first rotation, then in any case where y is black we apply another rotation.
      if y is red
      {
      recolor parent, grand parent and uncle
      }
      else (y is black)
      {
      if z is its parent's right (case 2, triangle)
      {
      rotate left
      }
      recolor and rotate right
      }

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

    why do you perform any of these operations when the tree remains balanced.

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

      Check the conditions here for rebalancing: github.com/msambol/dsa/blob/master/trees/red_black_tree.py#L97

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

    Can make video on rb tree deletion in 4 minutes please

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

    Good lecture and awesome strategy, but is the leave nil? Should them be paint as black? Why your leaves nodes have red color?

  • @LotusTree-jw1mr
    @LotusTree-jw1mr 2 роки тому

    Thank you for the video! Could you consider posting AVL tree when you have time? thank you!

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

    Plz make vedio on deletion sir

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

    Insertion is slightly confusing for RB trees... A full walkthrough on inserting a list of values into a RB tree would've helped understand it a bit better. You should do AVL trees next.

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

      Ankur Sundara Give me a few days and I'll have another video!

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

    Awesome!

  • @himanideone2013
    @himanideone2013 7 років тому +3

    Hey..will you please do an deletion video as well... please..I need it so bad..😭😭😭

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

    At 3:30, didn't you violate property 3 as well, "every red node has a black child"!?

  • @marco.nascimento
    @marco.nascimento 5 років тому

    It would be nice to emphasize which rules each case violates...

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

    I think both case 2 and case 3 are impossible to appear because they both violate rule 4 even before z is inserted, I am confused why there are these 4 cases.

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

      Case 2 and 3 are result of manipulation of case 1, u are correct they don't exist at insertion level, we loop our way towards the root node till we find parent and child of different colors

  • @VijaySharma-uu2xd
    @VijaySharma-uu2xd 6 років тому

    Plz make video on red black tree deletion

  • @00pium99
    @00pium99 5 років тому

    I need the Red-Black trees deletion video

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

    perfect, thanks!

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

    Great videos, thank yoU!

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

    😉🙏

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

    Please make more videos

  • @muditmalpani8704
    @muditmalpani8704 5 років тому +52

    I am black and i do not like the tone in which he is addressing my uncle

  • @00pium99
    @00pium99 5 років тому

    thank you

  • @KAZEEMJIMOH-dm7zm
    @KAZEEMJIMOH-dm7zm Місяць тому

    Great video, but the text translation reduced the effectiveness of the video by 50%. We learn best by virtual representation of ideas.

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

    Tomorrow is my exam but I can't understand deletions in red Black tree.

  • @santoshkumar-uw3ql
    @santoshkumar-uw3ql 3 роки тому +1

    If this would have explained with numbers it would be more clear.

  • @evan-wd3rx
    @evan-wd3rx 9 місяців тому

    What about the cases where Z has no uncle?

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

      If Z has no uncle, then it has no grandparent, and its parent must be black. So you can insert a red node without violating any of the properties.

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

    why A can be in the right subtree when the root is B?

  • @class-fo1st
    @class-fo1st 2 місяці тому

    bro how does "A" become larger than "Z"

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

    this video has made me more confused at 3:30........ Z and A are RED AND ADJACENT!!!!!!!!!!!!!!!!! So why in hell would it not violate the rbtree properties?????????????

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

    What if the uncle is red and the grandparent is actually the root?

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

      No one seems to explain that case for some reason. Everyone just leaves the root black in all times I've seen. Weird no explanation.
      Edit:
      I'm guessing it has something to do with the black height being the same if you just leave the root black, but still weird no one touches that idea.

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

      It's the combination of two cases :
      First, you do the basic recoloring of the parent, grand parent and uncle. That's case 1.
      Now you move to the grandparent to check for new violations, so your new Z is your old Z's grandparent.
      Which, in your case, is the tree's root.
      So, Z is root and red : you simply recolor to fix violation. That's case 0.
      It's okay to simply recolor Z : It's going to be black, as it should. Since it's black, you don't care about its child's color, they can be either red or black. And since it's the root, if you change it to black, you're going to increase the black height of every branch equally : Every violation is fixed.

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

    that relatable moment when your parent is white but your uncle is black

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

    I thought red node cannot have a red node as a parent or a child?

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

      It can't. But what Michael is describing is the fixups necessary to make that so.
      So Insert introduces a red node as a leaf node. Afterwards if the tree breaks the 4 rules (only 2 rules could be broken - root is red or 2 red nodes in succession), this procedure is the fixups necessary to repair the tree.
      And in mathematical notation, fixups go in the direction of the root, a maximum of O(log N) fixups are required.
      Delete also may require fixups. After some tree manipulation, you can arrange it so you are deleting a node with 0 or 1 children. 1-child is an easy case. Also 0-child (so it is a leaf node) where the node is Red is an easy case as well.
      The hard case is 0-child and the node is Black. Because if you delete that, you violate the property that the Black tree path count is the same for every path. You now have to do fixups towards the root, looking to restore the Black tree path count for this branch of the tree. This can always be done.

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

      @@stephenhowe4107 yes I understand now, I was a bit frustrated when I left the comment thanks

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

    bohot hard

  • @sankarsshanansundararajan8829
    @sankarsshanansundararajan8829 7 років тому +9

    Uncle ?wtf !!

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

    Why do you have to use the term "uncle"...it gets even more confusing!

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

    I feel like all of the trees violated the black property

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

    In Case 2 you already violate the child relationship as you still have a red child as a child for a red parent after rotation

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

      The author mentioned in a reply to another similar comment that case 2 in the video is only a partial fix. After case 2, case 3 is applied to completely fix the violation

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

    Is that Comic Sans?

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

    guys i think z's uncle might be black

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

    This data structure is so racist lol xD

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

      Nope. The history of it, is that at the time it was devised, the programmers only had red and black marker pens on white computer paper, so that is why those colours were chosen. This is reading racism into what was never there in the first place.

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

      @@stephenhowe4107 was literally a joke chill

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

    Holy shit i'm so dumb

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

    Uncle 😂

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

    bite me

  • @shareef.zamani07zamani24
    @shareef.zamani07zamani24 6 років тому

    A dump lecture

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

    black man love red aunt

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

    You are wrong Englishman

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

    what in the racist....