random-permutations
There are 6 repositories under random-permutations topic.
asimihsan/permutation-iterator-rs
A Rust library for iterating over random permutations.
maxmouchet/gfc
Implementation of a Generalized-Feistel Cipher for generating random permutations.
eduardosantoshf/assignment-problem
First AED Project - Algorithms to solve a problem in C using different methods (brute force, branch-and-bound, random permutations)
Goreli/DKMCPPM
Melbourne C++ Meetup materials
macmcmeans/fisherYatesDurstenfeldKnuthShuffle
🔀 The standard algorithm for generating a uniformly chosen random permutation. Devised by Ronald Fisher and Frank Yates, modernized by Richard Durstenfeld and popularized by Donald E. Knuth. This version permits Sattolo cycles as well as seeded/keyed shuffles and unshuffles.
ori88c/non-replacement-random-item-sampler
An efficient random item sampler that ensures O(1) sampling complexity, and equal selection probability for all items across cycles. Each cycle ensures unique, non-repeating item selections, with each item sampled only once per cycle. Upon cycle completion, the sampler automatically refreshes, initiating a new cycle to repeat the process.