码迷,mamicode.com
首页 > 编程语言 > 详细

算法Sedgewick第四版-第1章基础-002最大公约数(Euclid’s algorithm)

时间:2016-04-16 12:32:09      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

1.

1 public static int gcd(int p, int q) {
2     if (q == 0) return p;
3     int r = p % q;
4     return gcd(q, r);
5 }

 

算法Sedgewick第四版-第1章基础-002最大公约数(Euclid’s algorithm)

标签:

原文地址:http://www.cnblogs.com/shamgod/p/5397886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!