Function nekolib::algo::cycle_nth

source ·
pub fn cycle_nth<T, F>(x0: T, f: F, n: usize) -> Twhere
    T: Eq + Clone,
    F: Fn(T) -> T,
Expand description

nn 項目を求める。

与えられた x0x_0ff を用いて xi=f(xi1)x_i = f(x_{i-1}) (i>0i > 0) として 定義される列 {xi}i=0\{x_i\}_{i=0}^\inftynn 項目を求める。

Requirements

ff は参照透過である。

Complexuty

xμ=xμ+λx_{\mu} = x_{\mu+\lambda} なる最小の (μ,λ)(\mu, \lambda) に対し、O(min{n,μ+λ})O(\min\{n, \mu+\lambda\}) time.

Examples

use nekolib::algo::cycle_nth;

let x0 = 0;
let f = |x| (x + 1) % 100; // (mu, lambda) = (0, 100)
assert_eq!(cycle_nth(x0, f, 0), 0);
assert_eq!(cycle_nth(x0, f, 99), 99);
assert_eq!(cycle_nth(x0, f, 100), 0);
assert_eq!(cycle_nth(x0, f, 1000), 0);
assert_eq!(cycle_nth(x0, f, 10_usize.pow(9)), 0);

let x0 = -10;
let f = |x| (x + 1) % 100; // (mu, lambda) = (10, 100)
assert_eq!(cycle_nth(x0, f, 0), -10);
assert_eq!(cycle_nth(x0, f, 99), 89);
assert_eq!(cycle_nth(x0, f, 100), 90);
assert_eq!(cycle_nth(x0, f, 1000), 90);
assert_eq!(cycle_nth(x0, f, 10_usize.pow(9)), 90);