# Packages
Package skip defines a skiplist datastructure.
# Functions
BiSearch 二分查找,切片必需有序
matchUp规则如下:
参数为0时,则一定要找到相等的值
参数-1时,找value左边的值,例如:[10,20,30,40],当value为9时返回-1; 当value为11时,返回0 当value为41时,返回 3
参数 1时,找value右边的值,例如:[10,20,30,40],当value为9时返回 0; 当value为11时,返回1 当value为41时,返回-1
返回-1时代表没有找到下标
*/.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author