欧几里德算法
Posted 蜗牛快爬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了欧几里德算法相关的知识,希望对你有一定的参考价值。
Recursive:
int gcd(int a, int b) {
return b ? gcd(b, a%b) : a;
}
Iterative:
int gcd(int a, int b) {
while (b) {
int tmp = b;
b = a%b;
a = tmp;
}
return a;
}
就是喜欢简洁。
Reference:
[1] http://www.cnblogs.com/frog112111/archive/2012/08/19/2646012.html
以上是关于欧几里德算法的主要内容,如果未能解决你的问题,请参考以下文章