window-sort-iterator
An iterator adapter that sorts items within a sliding window.
Implementation
This keeps a BinaryHeap of the items within a sliding window on top of an iterator. The algorithm works like this:
- As long as the window is not full, requests elements from the underlying iterator and inserts them into the heap.
- If the window is full, pops the next sorted element from the heap.
- If the underlying iterator does not produce any more items, drains the remaining elements in-order from the heap.
By default, this uses a max-heap, which results in the highest item being yielded first.
You can use a min-heap by wrapping items with std::cmp::Reverse
.
Usage
use WindowSortIterExt;
let a = &;
let mut it = a.iter.cloned.window_sort;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
License
MIT, see LICENSE.