pub trait GcdRecip: Sized {
// Required method
fn gcd_recip(self, other: Self) -> (Self, Self);
}
Expand description
最大公約数と逆元。
次の条件を満たす唯一の を返す。
のとき であり、 とはならないことに注意せよ1。
Complexity
time.
Examples
use nekolib::math::GcdRecip;
let (g, r) = 27_u32.gcd_recip(30);
assert_eq!(g, 3);
assert_eq!(r, 9);
assert_eq!((27 * r) % 30, g);
とすると が定義できないため。 ↩