想一下,最大公约数怎么求
Posted 呼呼呼呼呼65
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了想一下,最大公约数怎么求相关的知识,希望对你有一定的参考价值。
1.辗转相除法
/** * 辗转相除法,a和b都很大时,运算的次数就会越多 * @param a * @param b * @return */ public static int test1(int a,int b){ int max=a>b?a:b; int min=a<b?a:b; int c =max%min; if(c==0){ return min; } return test1(c,min); }
2.更相减损术
/** * 更相减损术,a和b数相差太大,可能导致递归的时间越来越长 * @param a * @param b * @return */ public static int test2(int a,int b){ int max=a>b?a:b; int min=a<b?a:b; int c=max-min; if(c==0){ return min; } return test2(c,min); }
3.神奇的第三种(前面两种的结合)
/** * 上面的结合体,采用移位的方法 * @param a * @param b * @return */ public static int test3(int a,int b){ if(a==b){ return b; } if(a<b){ return test3(b,a); } if(a%2==0&&b%2==0){ return test3(a>>1,b>>1); }else if(a%2==0&&b%2!=0){ return test3(a>>1,a-b); }else if(a%2!=0&&b%2==0){ return test3(a-b,b>>1); }else{ return test3(a,a-b); } }
为什么一个简单的问题,要究其所以然呢?
以上是关于想一下,最大公约数怎么求的主要内容,如果未能解决你的问题,请参考以下文章