Beispiel #1
0
 /// <summary>
 /// single right rotation
 /// see ABL Trees from Lab 20
 ///
 /// </summary>
 /// <param name="pivot"></param>
 public void RotateRight(RBTreeNodea <T> pivot)
 {
 }
Beispiel #2
0
 /// <summary>
 /// single left rotation
 /// see ABL Trees from Lab 20
 ///
 /// </summary>
 /// <param name="pivot"></param>
 public void RotateLeft(RBTreeNodea <T> pivot)
 {
 }