2 unstable releases

0.4.0 Aug 25, 2023
0.3.10 Dec 19, 2022
0.2.2 May 12, 2022
0.1.6 May 4, 2022

#1014 in Algorithms

Download history 64/week @ 2024-01-07 46/week @ 2024-01-14 23/week @ 2024-01-21 68/week @ 2024-01-28 157/week @ 2024-02-04 190/week @ 2024-02-11 158/week @ 2024-02-18 224/week @ 2024-02-25 103/week @ 2024-03-03 131/week @ 2024-03-10 67/week @ 2024-03-17 32/week @ 2024-03-24 84/week @ 2024-03-31 89/week @ 2024-04-07 159/week @ 2024-04-14

368 downloads per month

MIT license

25KB
321 lines

Top N Set

Crates.io Crates.io License Docs

This crate provides a topset which selects a given number of greatest items. The criterium used to sort the items could be specified as a closure. It is based internally on a binary heap with a fixed size.

The struct TopSet could be used directly or through the trait TopSetReducing which automatically extend the iterator trait.

Note: the returned items are unsorted.

use topset::TopIter;


fn main()
{
    let items = vec![4, 5, 8, 3, 2, 1, 4, 7, 9, 8];
    
    // getting the four greatest integers (repeating allowed)
    items.iter().cloned()
            .topset(4, i32::gt)
            .into_iter()
            .for_each(|x| eprintln!("in the top 4: {}", x));

    // getting the four smallest integers
    // (we just need to reverse the comparison function)
    items.topset(4, i32::lt)
            .into_iter()
            .for_each(|x| eprintln!("in the last 4: {}", x));
}

will produce (possibly in a different order):

in the top 4: 7
in the top 4: 8
in the top 4: 9
in the top 4: 8
in the last 4: 4
in the last 4: 3
in the last 4: 1
in the last 4: 2

No runtime deps