public int CountThan(sortType key)
 {
     return(tree.CountThan(ref key));
 }
 public int CountThan(int index, sortType key)
 {
     AutoCSer.SearchTree.Dictionary <sortType, valueType> tree = treeArray[index];
     return(tree != null?tree.CountThan(ref key) : 0);
 }