Disclaimer: The code is not mine.
The code is part of the coreutils project. I have forked it for ease of use, for those who dont want to pull in big dependencies for calculating gcd.
You can pass any numeric type into gcd()
function. You can pass u8
, u16
, u32
, u64
and hell, even usize
. But please note that the 2 numbers that you pass must have the same type. Please have a look at the Quick Start section below for examples.
This code uses stein's algorithm, that replaces division with arithmetic shifts, comparisons, and subtraction, for optimization of performance. For more info on how efficient this algorithm is, please refer to this page.
```rust use gcd_bitwise::interface::gcd;
fn main() {
// For u8
type
let num1: u8 = 15;
let num2: u8 = 51;
let gcd: u8 = gcd(num1, num2);
println!("gcd: {}", gcd); // 3
// For `usize` type
let num1: usize = 65535;
let num2: usize = 125;
let gcd: usize = gcd(num1, num2);
println!("gcd: {}", gcd); // 5
// And on it goes...
} ```