10个版本 (4个稳定)
1.3.0 | 2020年7月4日 |
---|---|
1.2.0 | 2020年6月24日 |
1.1.0 | 2020年4月11日 |
0.1.5 | 2020年2月3日 |
0.1.2 | 2019年1月15日 |
#816 in 数据结构
每月28次下载
14KB
212 行
moving min max
跟踪滑动窗口中的最小或最大值。
moving min max
提供了一个跟踪滑动窗口中最小值的结构和另一个跟踪最大值的结构。
该算法基于这里的描述。
操作复杂度为
- 获取最小/最大值 O(1)
- 推入 O(1)
- 弹出 amortized O(1)
use moving_min_max::MovingMin;
let mut moving_min = MovingMin::<i32>::new();
moving_min.push(2);
moving_min.push(1);
moving_min.push(3);
assert_eq!(moving_min.min(), Some(&1));
assert_eq!(moving_min.pop(), Some(2));
assert_eq!(moving_min.min(), Some(&1));
assert_eq!(moving_min.pop(), Some(1));
assert_eq!(moving_min.min(), Some(&3));
assert_eq!(moving_min.pop(), Some(3));
assert_eq!(moving_min.min(), None);
assert_eq!(moving_min.pop(), None);
或者
use moving_min_max::MovingMax;
let mut moving_max = MovingMax::<i32>::new();
moving_max.push(2);
moving_max.push(3);
moving_max.push(1);
assert_eq!(moving_max.max(), Some(&3));
assert_eq!(moving_max.pop(), Some(2));
assert_eq!(moving_max.max(), Some(&3));
assert_eq!(moving_max.pop(), Some(3));
assert_eq!(moving_max.max(), Some(&1));
assert_eq!(moving_max.pop(), Some(1));
assert_eq!(moving_max.max(), None);
assert_eq!(moving_max.pop(), None);