-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
473: Add helper method for taking the k smallest elements in an iterator r=jswrenn a=nbraud Co-authored-by: nicoo <[email protected]> Co-authored-by: Giacomo Stevanato <[email protected]>
- Loading branch information
Showing
4 changed files
with
147 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
use alloc::collections::BinaryHeap; | ||
use core::cmp::Ord; | ||
|
||
pub(crate) fn k_smallest<T: Ord, I: Iterator<Item = T>>(mut iter: I, k: usize) -> BinaryHeap<T> { | ||
if k == 0 { return BinaryHeap::new(); } | ||
|
||
let mut heap = iter.by_ref().take(k).collect::<BinaryHeap<_>>(); | ||
|
||
for i in iter { | ||
debug_assert_eq!(heap.len(), k); | ||
// Equivalent to heap.push(min(i, heap.pop())) but more efficient. | ||
// This should be done with a single `.peek_mut().unwrap()` but | ||
// `PeekMut` sifts-down unconditionally on Rust 1.46.0 and prior. | ||
if *heap.peek().unwrap() > i { | ||
*heap.peek_mut().unwrap() = i; | ||
} | ||
} | ||
|
||
heap | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters