web-dev-qa-db-ja.com

Java:最大公約数を取得する

このような関数はBigInteger、つまり BigInteger#gcd に存在することを見てきました。 Javaには、他のタイプ(intlongまたはInteger)でも機能する他の関数がありますか?これはJava.lang.Math.gcd(すべての種類のオーバーロードを含む)として理にかなっているようですが、そうではありません。他の場所ですか?


(この質問を「自分でこれを実装する方法」と混同しないでください!)

77
Albert

Intおよびlongの場合、プリミティブではなく、実際に。整数の場合、誰かが書いた可能性があります。

BigIntegerがint、Integer、long、およびLongの(数学/機能)スーパーセットである場合、これらの型を使用する必要がある場合は、BigIntegerに変換し、GCDを実行し、結果を元に戻します。

private static int gcdThing(int a, int b) {
    BigInteger b1 = BigInteger.valueOf(a);
    BigInteger b2 = BigInteger.valueOf(b);
    BigInteger gcd = b1.gcd(b2);
    return gcd.intValue();
}
68
Tony Ennis

私の知る限り、プリミティブの組み込みメソッドはありません。しかし、これと同じくらい簡単なことがトリックを行うはずです:

public int GCD(int a, int b) {
   if (b==0) return a;
   return GCD(b,a%b);
}

あなたがそのようなことに興味があるなら、それを1行にすることもできます:

public int GCD(int a, int b) { return b==0 ? a : GCD(b, a%b); }

同じバイトコードにコンパイルされるため、2つの間に絶対的にnoの違いがあることに注意してください。

128
Matt

または、GCDを計算するユークリッドアルゴリズム...

public int egcd(int a, int b) {
    if (a == 0)
        return b;

    while (b != 0) {
        if (a > b)
            a = a - b;
        else
            b = b - a;
    }

    return a;
}
33
Xorlev

グアバを使用 LongMath.gcd() および IntMath.gcd()

11
Morad

Jakarta Commons Mathにはまさにそれがあります。

ArithmeticUtils.gcd(int p、int q)

11
Tom Tucker

グアバがない限り、次のように定義します。

int gcd(int a, int b) {
  return a == 0 ? b : gcd(b % a, a);
}
10
Alexey

Binary GCD algorithm のこの実装を使用できます

public class BinaryGCD {

public static int gcd(int p, int q) {
    if (q == 0) return p;
    if (p == 0) return q;

    // p and q even
    if ((p & 1) == 0 && (q & 1) == 0) return gcd(p >> 1, q >> 1) << 1;

    // p is even, q is odd
    else if ((p & 1) == 0) return gcd(p >> 1, q);

    // p is odd, q is even
    else if ((q & 1) == 0) return gcd(p, q >> 1);

    // p and q odd, p >= q
    else if (p >= q) return gcd((p-q) >> 1, q);

    // p and q odd, p < q
    else return gcd(p, (q-p) >> 1);
}

public static void main(String[] args) {
    int p = Integer.parseInt(args[0]);
    int q = Integer.parseInt(args[1]);
    System.out.println("gcd(" + p + ", " + q + ") = " + gcd(p, q));
}

}

から http://introcs.cs.princeton.edu/Java/23recursion/BinaryGCD.Java.html

7
linuxjava

両方の数値が負の場合、ここの実装の一部は正しく機能していません。 gcd(-12、-18)は-6ではなく6です。

そのため、絶対値を返す必要があります。

public static int gcd(int a, int b) {
    if (b == 0) {
        return Math.abs(a);
    }
    return gcd(b, a % b);
}
6
Robot Monk

gcdを見つけるために再帰関数を使用できます

public class Test
{
 static int gcd(int a, int b)
    {
        // Everything divides 0 
        if (a == 0 || b == 0)
           return 0;

        // base case
        if (a == b)
            return a;

        // a is greater
        if (a > b)
            return gcd(a-b, b);
        return gcd(a, b-a);
    }

    // Driver method
    public static void main(String[] args) 
    {
        int a = 98, b = 56;
        System.out.println("GCD of " + a +" and " + b + " is " + gcd(a, b));
    }
}
3
Esann

Java 1.5以降を使用している場合、これは Integer.numberOfTrailingZeros() を使用して必要なチェックと反復の回数を減らす反復バイナリGCDアルゴリズムです。

public class Utils {
    public static final int gcd( int a, int b ){
        // Deal with the degenerate case where values are Integer.MIN_VALUE
        // since -Integer.MIN_VALUE = Integer.MAX_VALUE+1
        if ( a == Integer.MIN_VALUE )
        {
            if ( b == Integer.MIN_VALUE )
                throw new IllegalArgumentException( "gcd() is greater than Integer.MAX_VALUE" );
            return 1 << Integer.numberOfTrailingZeros( Math.abs(b) );
        }
        if ( b == Integer.MIN_VALUE )
            return 1 << Integer.numberOfTrailingZeros( Math.abs(a) );

        a = Math.abs(a);
        b = Math.abs(b);
        if ( a == 0 ) return b;
        if ( b == 0 ) return a;
        int factorsOfTwoInA = Integer.numberOfTrailingZeros(a),
            factorsOfTwoInB = Integer.numberOfTrailingZeros(b),
            commonFactorsOfTwo = Math.min(factorsOfTwoInA,factorsOfTwoInB);
        a >>= factorsOfTwoInA;
        b >>= factorsOfTwoInB;
        while(a != b){
            if ( a > b ) {
                a = (a - b);
                a >>= Integer.numberOfTrailingZeros( a );
            } else {
                b = (b - a);
                b >>= Integer.numberOfTrailingZeros( b );
            }
        }
        return a << commonFactorsOfTwo;
    }
}

単体テスト:

import Java.math.BigInteger;
import org.junit.Test;
import static org.junit.Assert.*;

public class UtilsTest {
    @Test
    public void gcdUpToOneThousand(){
        for ( int x = -1000; x <= 1000; ++x )
            for ( int y = -1000; y <= 1000; ++y )
            {
                int gcd = Utils.gcd(x, y);
                int expected = BigInteger.valueOf(x).gcd(BigInteger.valueOf(y)).intValue();
                assertEquals( expected, gcd );
            }
    }

    @Test
    public void gcdMinValue(){
        for ( int x = 0; x < Integer.SIZE-1; x++ ){
            int gcd = Utils.gcd(Integer.MIN_VALUE,1<<x);
            int expected = BigInteger.valueOf(Integer.MIN_VALUE).gcd(BigInteger.valueOf(1<<x)).intValue();
            assertEquals( expected, gcd );
        }
    }
}
2
MT0
public int gcd(int num1, int num2) { 
    int max = Math.abs(num1);
    int min = Math.abs(num2);

    while (max > 0) {
        if (max < min) {
            int x = max;
            max = min;
            min = x;
        }
        max %= min;
    }

    return min;
}

この方法では、ユークリッドのアルゴリズムを使用して、2つの整数の「最大公約数」を取得します。 2つの整数を受け取り、それらのgcdを返します。とても簡単!

1
Mohsen
/*
import scanner and instantiate scanner class;
declare your method with two parameters
declare a third variable;
set condition;
swap the parameter values if condition is met;
set second conditon based on result of first condition;
divide and assign remainder to the third variable;
swap the result;
in the main method, allow for user input;
Call the method;

*/
public class gcf {
    public static void main (String[]args){//start of main method
        Scanner input = new Scanner (System.in);//allow for user input
        System.out.println("Please enter the first integer: ");//Prompt
        int a = input.nextInt();//initial user input
        System.out.println("Please enter a second interger: ");//Prompt
        int b = input.nextInt();//second user input


       Divide(a,b);//call method
    }
   public static void Divide(int a, int b) {//start of your method

    int temp;
    // making a greater than b
    if (b > a) {
         temp = a;
         a = b;
         b = temp;
    }

    while (b !=0) {
        // gcd of b and a%b
        temp = a%b;
        // always make a greater than b
        a =b;
        b =temp;

    }
    System.out.println(a);//print to console
  }
}
0
Gitau Harrison

私は14歳のときに作成したこの方法を使用しました。

    public static int gcd (int a, int b) {
        int s = 1;
        int ia = Math.abs(a);//<-- turns to absolute value
        int ib = Math.abs(b);
        if (a == b) {
            s = a;
        }else {
            while (ib != ia) {
                if (ib > ia) {
                    s = ib - ia;
                    ib = s;
                }else { 
                    s = ia - ib;
                    ia = s;
                }
            }
        }
        return s;
    }
0
John Doe

他の場所ですか?

Apache! -gcdとlcmの両方を持っているので、クールです!

ただし、実装の奥深さのために、単純な手書きバージョンと比較すると速度が遅くなります(重要な場合)。

Commons-MathGuava で提供されるGCD関数にはいくつかの違いがあります。

  • Commons-Mathは、ArithematicException.classまたはInteger.MIN_VALUEに対してのみ Long.MIN_VALUE をスローします。
    • それ以外の場合は、値を絶対値として処理します。
  • グアバは、負の値に対してIllegalArgumentException.classをスローします。
0
Jin Kwon