예제 #1
0
 public AVLNode <TKey, TValue>?GetNearestLeft(TKey key)
 {
     return(AVLNode <TKey, TValue> .GetNearestLeft(_root, key, _comparer));
 }
예제 #2
0
 public AVLNode GetNearestLeft(TKey key)
 {
     return(AVLNode.GetNearestLeft(_root, key, _comparison));
 }