小编典典

BigInteger大多数时间优化的乘法

algorithm

嗨,我想以最及时的优化方式将2个大整数相乘。我目前正在使用karatsuba算法。任何人都可以提出更优化的方法或算法来做到这一点。

谢谢

public static BigInteger karatsuba(BigInteger x, BigInteger y) {

        // cutoff to brute force
        int N = Math.max(x.bitLength(), y.bitLength());
        System.out.println(N);
        if (N <= 2000) return x.multiply(y);                // optimize this parameter

        // number of bits divided by 2, rounded up
        N = (N / 2) + (N % 2);

        // x = a + 2^N b,   y = c + 2^N d
        BigInteger b = x.shiftRight(N);
        BigInteger a = x.subtract(b.shiftLeft(N));
        BigInteger d = y.shiftRight(N);
        BigInteger c = y.subtract(d.shiftLeft(N));

        // compute sub-expressions
        BigInteger ac    = karatsuba(a, c);
        BigInteger bd    = karatsuba(b, d);
        BigInteger abcd  = karatsuba(a.add(b), c.add(d));

        return ac.add(abcd.subtract(ac).subtract(bd).shiftLeft(N)).add(bd.shiftLeft(2*N));
    }

阅读 335

收藏
2020-07-28

共1个答案

小编典典

jdk8中BigInteger的版本根据输入的大小在天真的算法,Toom-Cook算法和唐津之间进行切换,以实现出色的性能。

2020-07-28