Created
January 14, 2013 01:22
-
-
Save lomereiter/4527144 to your computer and use it in GitHub Desktop.
Fibonacci and factorial functions in Rust using GMP bindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern mod gmp; | |
extern mod std; | |
use std::getopts::*; | |
use gmp::Mpz; | |
use num::Num::from_int; | |
use std::time::precise_time_s; | |
fn factorial(n: uint) -> Mpz | |
{ | |
let mut f: Mpz = from_int(1); | |
let mut count = 1; | |
while count <= n { | |
f *= from_int(count as int); | |
count += 1 | |
} | |
f | |
} | |
fn main() { | |
match getopts(os::args(), ~[reqopt(~"n")]) { | |
result::Ok(ref m) => { | |
let n = uint::from_str(opt_str(m, ~"n")).get(); | |
let t0 = precise_time_s(); | |
let fac = factorial(n); | |
let t1 = precise_time_s(); | |
io::println(fac.to_str()); | |
let t2 = precise_time_s(); | |
io::println(fmt!("calc: %f", t1 - t0)); | |
io::println(fmt!("print: %f", t2 - t1)); | |
io::println(fmt!("total: %f", t2 - t0)); | |
} | |
result::Err(f) => { fail fail_str(f) } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern mod gmp; | |
extern mod std; | |
use std::getopts::*; | |
use gmp::Mpz; | |
use num::Num::from_int; | |
use std::time::precise_time_s; | |
fn fibonacci(n: uint) -> Mpz | |
{ | |
let mut f0: Mpz = from_int(0); | |
let mut f1: Mpz = from_int(1); | |
let mut count = 0; | |
while count < n { | |
let f2 = f0 + f1; | |
f0 = f1; | |
f1 = f2; | |
count += 1 | |
} | |
f0 | |
} | |
fn main() { | |
match getopts(os::args(), ~[reqopt(~"n")]) { | |
result::Ok(ref m) => { | |
let n = uint::from_str(opt_str(m, ~"n")).get(); | |
let t0 = precise_time_s(); | |
let fib = fibonacci(n); | |
let t1 = precise_time_s(); | |
io::println(fib.to_str()); | |
let t2 = precise_time_s(); | |
io::println(fmt!("calc: %f", t1 - t0)); | |
io::println(fmt!("print: %f", t2 - t1)); | |
io::println(fmt!("total: %f", t2 - t0)); | |
} | |
result::Err(f) => { fail fail_str(f) } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment