#slice #pick #random #array #choose

random-pick

Pick an element from a slice randomly by given weights

22 stable releases

1.2.16 Nov 4, 2022
1.2.15 Mar 18, 2022
1.2.14 Apr 22, 2021
1.2.13 Jul 29, 2020
1.2.3 Nov 14, 2018

#296 in Algorithms

Download history 5345/week @ 2024-01-03 4831/week @ 2024-01-10 6274/week @ 2024-01-17 5569/week @ 2024-01-24 5363/week @ 2024-01-31 4088/week @ 2024-02-07 5505/week @ 2024-02-14 7100/week @ 2024-02-21 6924/week @ 2024-02-28 5293/week @ 2024-03-06 6267/week @ 2024-03-13 5650/week @ 2024-03-20 6239/week @ 2024-03-27 5715/week @ 2024-04-03 5412/week @ 2024-04-10 4510/week @ 2024-04-17

22,872 downloads per month
Used in 25 crates (2 directly)

MIT license

11KB
136 lines

Random Pick

CI

Pick an element from a slice randomly by given weights.

Example

enum Prize {
    Legendary,
    Rare,
    Enchanted,
    Common,
}

let prize_list = [Prize::Legendary, Prize::Rare, Prize::Enchanted, Prize::Common]; // available prizes

let slice = &prize_list;
let weights = [1, 5, 15, 30]; // a scale of chance of picking each kind of prize

let n = 1000000;
let mut counter = [0usize; 4];

for _ in 0..n {
    let picked_item = random_pick::pick_from_slice(slice, &weights).unwrap();

    match picked_item {
        Prize::Legendary=>{
            counter[0] += 1;
           }
        Prize::Rare=>{
            counter[1] += 1;
        }
        Prize::Enchanted=>{
            counter[2] += 1;
        }
        Prize::Common=>{
            counter[3] += 1;
        }
    }
}

println!("{}", counter[0]); // Should be close to 20000
println!("{}", counter[1]); // Should be close to 100000
println!("{}", counter[2]); // Should be close to 300000
println!("{}", counter[3]); // Should be close to 600000

The length of the slice is usually an integral multiple (larger than zero) of that of weights.

If you have multiple slices, you don't need to use extra space to concat them, just use the pick_from_multiple_slices function, instead of pick_from_slice.

Besides picking a single element from a slice or slices, you can also use pick_multiple_from_slice and pick_multiple_from_multiple_slices functions. Their overhead is lower than that of non-multiple-pick functions with extra loops.

Crates.io

https://crates.io/crates/random-pick

Documentation

https://docs.rs/random-pick

License

MIT

Dependencies

~0.6–1.1MB
~24K SLoC