コード例 #1
0
ファイル: Set.cs プロジェクト: tk-koitan/MadeInKawazSP
 public int UpperBound(T v)
 {
     return(SB_BinarySearchTree <T> .UpperBound(_root, v));
 }
コード例 #2
0
ファイル: Set.cs プロジェクト: tk-koitan/MadeInKawazSP
 public int Count(T v)
 {
     return(SB_BinarySearchTree <T> .UpperBound(_root, v) - SB_BinarySearchTree <T> .LowerBound(_root, v));
 }