いろんな言語でハノイの塔
差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン | ||
いろんな言語でハノイの塔 [2021/04/30 12:28] – [性能] araki | いろんな言語でハノイの塔 [2021/04/30 12:38] (現在) – [Rust] araki | ||
---|---|---|---|
行 1168: | 行 1168: | ||
araki@cherry: | araki@cherry: | ||
</ | </ | ||
+ | |||
+ | ==== Rust ==== | ||
+ | === 能書き === | ||
+ | システム記述言語として注目を集めているRust。 | ||
+ | メモリの管理が静的に行われており、予期せぬメモリリークなどによるセキュリティホールなどを言語レベルで防止できる。 | ||
+ | |||
+ | cargoを使用してひな型を作り、getoptsによるオプション処理を加えた。 | ||
+ | ハノイの塔本体部分より、オプションの処理部分のほうが大きい。 | ||
+ | なお、ハノイの塔部分に関しては特にオブジェクト指向的なつくりにはしていない。 | ||
+ | === コード === | ||
+ | コードは、RubyやPythonなどのスクリプト型言語と似た感じになっているが、静的な片付けが行われているところが、これらの言語とは違っている。 | ||
+ | また、ガベージコレクションによる動的なメモリ管理ではなく、静的な管理が中心となる。 | ||
+ | |||
+ | < | ||
+ | use getopts:: | ||
+ | use std:: | ||
+ | use std::env; | ||
+ | |||
+ | fn print_usage(prog_name: | ||
+ | { | ||
+ | let brief = format!(" | ||
+ | print!(" | ||
+ | process:: | ||
+ | } | ||
+ | |||
+ | fn hanoi(n: i32, a: i32, b: i32, c: i32) | ||
+ | { | ||
+ | if n > 0 | ||
+ | { | ||
+ | hanoi(n - 1, a, c, b); | ||
+ | println!(" | ||
+ | hanoi(n - 1, c, b, a); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | fn main() | ||
+ | { | ||
+ | let args: Vec< | ||
+ | let program = args[0].clone(); | ||
+ | |||
+ | let mut opts = Options:: | ||
+ | opts.optopt(" | ||
+ | opts.optflag(" | ||
+ | let matches = match opts.parse(& | ||
+ | { | ||
+ | Ok(m) => { m } | ||
+ | Err(f) => { panic!(f.to_string()) } | ||
+ | }; | ||
+ | if matches.opt_present(" | ||
+ | { | ||
+ | print_usage(& | ||
+ | return; | ||
+ | } | ||
+ | let n = match matches.opt_get_default::< | ||
+ | { | ||
+ | Ok(t) => { t } | ||
+ | Err(f) => { panic!(f.to_string()) } | ||
+ | }; | ||
+ | hanoi(n, 1, 2, 3); | ||
+ | } | ||
+ | </ | ||
+ | === 実行結果 === | ||
+ | < | ||
+ | araki@cherry: | ||
+ | Disc 1 moved from 1 to 3 | ||
+ | Disc 2 moved from 1 to 2 | ||
+ | Disc 1 moved from 3 to 2 | ||
+ | Disc 3 moved from 1 to 3 | ||
+ | Disc 1 moved from 2 to 1 | ||
+ | Disc 2 moved from 2 to 3 | ||
+ | Disc 1 moved from 1 to 3 | ||
+ | Disc 4 moved from 1 to 2 | ||
+ | Disc 1 moved from 3 to 2 | ||
+ | Disc 2 moved from 3 to 1 | ||
+ | Disc 1 moved from 2 to 1 | ||
+ | Disc 3 moved from 3 to 2 | ||
+ | Disc 1 moved from 1 to 3 | ||
+ | Disc 2 moved from 1 to 2 | ||
+ | Disc 1 moved from 3 to 2 | ||
+ | |||
+ | real 0m0.004s | ||
+ | user 0m0.003s | ||
+ | sys | ||
+ | araki@cherry: | ||
+ | </ | ||
+ | |||
+ | |||
いろんな言語でハノイの塔.1619785713.txt.gz · 最終更新: 2021/04/30 12:28 by araki