约瑟夫问题
摘要:<?php// Josephu Quessionclass Person { public $no; public $next = NULL; public function __construct($no) { $this->no = $no; }}class RoundList { public $head = NULL; public $tail = NULL; public function __construct($n) { $this->create($n); } private function c...
阅读全文
posted @ 2013-01-30 12:04
浙公网安备 33010602011771号