pub trait StirlingSecond {
type Output;
// Required method
fn stirling_second(&self, n: usize, k: usize) -> Self::Output;
}
Expand description
第二種スターリング数
Required Associated Types§
Required Methods§
Sourcefn stirling_second(&self, n: usize, k: usize) -> Self::Output
fn stirling_second(&self, n: usize, k: usize) -> Self::Output
第二種スターリング数$S(n,k)$を計算する。