Home | History | Annotate | Download | only in ADT

Lines Matching defs:RL

519       TreeTy *RL = getLeft(R);
522 if (getHeight(RR) >= getHeight(RL))
523 return createNode(createNode(L,V,RL), R, RR);
525 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
527 TreeTy *RLL = getLeft(RL);
528 TreeTy *RLR = getRight(RL);
530 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));