使用旧的 Rust 2015
|
0.2.0
| 2017 年 3 月 29 日 |
|
0.1.0
| 2017 年 3 月 29 日 |
在 数据结构 中排名 #2258
每月下载量 414
SortedList

与 .NET 库中找到的 SortedList 类似的数据结构。基于 Vec<K> 和 Vec<V> 的朴素实现。相同的键可以映射到多个值,并且值按插入顺序存储。
不支持
- 删除
范围查询(需要 feature = "nightly" 和 nightly 编译器)
Cargo.toml
[dependencies]
sorted-list = "0.1"
或
[dependencies]
sorted-list = { git = "https://github.com/koivunej/sorted-list.git" }
许可协议
MIT.