2 个不稳定版本
使用旧的 Rust 2015
0.2.0 | 2017 年 3 月 29 日 |
---|---|
0.1.0 | 2017 年 3 月 29 日 |
在 数据结构 中排名 #2258
每月下载量 414
27KB
659 行
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.
lib.rs
:
类似于 .NET 集合库中的简单有序列表集合。