会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
冬至夏末
Winners do what losers don't want to do.
博客园
首页
联系
管理
2012年12月24日
数学算法那些事
摘要: 1. 三种方法求最大公约数1、连续整数检测法.此算法比较简单:/** * greatest common divisor * * @param int $a * @param int $b */function gcd($a, $b){ $t = $a> $b ?$b :$a; wh...
阅读全文
posted @ 2012-12-24 19:59 夏至冬末
阅读(163)
评论(0)
推荐(0)
编辑