Recent content by giantimi

  1. G

    How Do You Debug a Parent Method in a Red-Black Tree?

    Thanks Thanks a lot, that helped a ton.
  2. G

    How Do You Debug a Parent Method in a Red-Black Tree?

    Hello, I am having some trouble with my red and black tree. I made up a parent method which finds the node before the node and then sets an iterator to that node. The code is below: private RBNode parent(Comparable x, RBNode i) { RBNode tmp = new RBNode(null,null,null); if(i==null ||...
Back
Top