如何在不使用 java.math.BigInteger 的情况下在 Java 中处理非常大的数字 [英] How to handle very large numbers in Java without using java.math.BigInteger

查看:37
本文介绍了如何在不使用 java.math.BigInteger 的情况下在 Java 中处理非常大的数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在不使用 java.math.BigInteger 的情况下,我将如何使用任意大的整数进行算术运算,+ -/* % !?

How would I go about doing arithmetic, + - / * % !, with arbitrarily large integers without using java.math.BigInteger?

例如,90 的阶乘在 Java 中返回 0.我希望能够解决这个问题.

For instance, the factorial of 90 returns 0 in Java. I would like to be able to solve that.

推荐答案

我认为程序员应该已经实现了自己的 bignum-library,所以欢迎来到这里.

I think a programmer should have implemented his own bignum-library once, so welcome here.

(当然,稍后你会发现 BigInteger 更好,并使用它,但这是一次宝贵的学习经验.)

(Of course, later you'll get that BigInteger is better, and use this, but it is a valuable learning experience.)

(可以关注本教程生活源码在 github 上.另外,我把这个(有点打磨)改成了 14 部分博客系列.)

(You can follow the source code of this course life on github. Also, I remade this (a bit polished) into a 14-part blog series.)

那么,我们需要什么?

基于 Java 提供给我们的数据类型.

based on the datatypes which Java gives us.

由于您认为十进制转换是最复杂的部分,所以让我们保持基于十进制的模式.为了效率,我们将不存储真正的十进制数字,而是在基数 1 000 000 000 = 10^9 <;2^30.这适合 Java int(最多 2^312^32),以及两个这样的数字 非常适合 Java long.

As you think the decimal conversion is the most complicated part, let's stay in a decimal based mode. For efficiency, we'll store not real decimal digits, but work in base 1 000 000 000 = 10^9 < 2^30. This fits in a Java int (up to 2^31 or 2^32), and the product of two such digits fits nicely in a Java long.

final static int BASE = 1000000000;
final static int BASE_DECIMAL_DIGITS = 9;

然后是数字数组:

private int[] digits;

我们是以小端还是大端存储数字,即较大的部分首先还是最后?这并不重要,所以我们决定使用大端,因为这是人类想要阅读的方式.(现在我们专注于非负值 - 稍后我们将为负数添加一个符号位.)

Do we store the digits in little- or big endian, i.e. the bigger parts first or last? It does not really matter, so we decide on big-endian since this is how humans want to read it. (For now we concentrate on non-negative values - later we'll add a sign bit for negative numbers.)

出于测试目的,我们添加了一个构造函数,它允许从这样的 int[] 进行初始化.

For testing purposes, we add a constructor which allows initializing from such a int[].

/**
 * creates a DecimalBigInt based on an array of digits.
 * @param digits a list of digits, each between 0 (inclusive)
 *    and {@link BASE} (exclusive).
 * @throws IllegalArgumentException if any digit is out of range.
 */
public DecimalBigInt(int... digits) {
    for(int digit : digits) {
        if(digit < 0 ||  BASE <= digit) {
            throw new IllegalArgumentException("digit " + digit +
                                               " out of range!");
        }
    }
    this.digits = digits.clone();
}

作为一个额外的好处,这个构造函数也可用于单个 int(如果小于 BASE),甚至对于没有 int(我们将其解释为 0).所以,我们现在可以这样做:

As a added bonus, this constructor is also usable for a single int (if smaller than BASE), and even for no int (which we'll interpret as 0). So, we now can do this:

DecimalBigInt d = new DecimalBigInt(7, 5, 2, 12345);
System.out.println(d);

这给了我们 de.fencing_game.paul.examples.DecimalBigInt@6af62373,不是很有用.所以,我们添加一个 toString() 方法:

This gives us de.fencing_game.paul.examples.DecimalBigInt@6af62373, not so useful. So, we add a toString() method:

/**
 * A simple string view for debugging purposes.
 * (Will be replaced later with a real decimal conversion.)
 */
public String toString() {
    return "Big" + Arrays.toString(digits);
}

现在输出的是Big[7, 5, 2, 12345],这对测试更有用,不是吗?

The output is now Big[7, 5, 2, 12345], which is more useful for testing, isn't it?

我们很幸运:我们的基数 (10^9) 是我们想要从 (10) 转换的基数的幂.因此,我们总是有相同数量(9)的十进制数字代表一个我们的格式".数字.(当然,一开始可能会少一些数字.)在下面的代码中,decimal是一个十进制数字的字符串.

We are lucky here: our base (10^9) is a power of the base we want to convert from (10). Thus, we always have the same number (9) of decimal digits representing one "our format" digit. (Of course, in the beginning there may be some digits less.) In the following code, decimal is a String of decimal digits.

 int decLen = decimal.length();
 int bigLen = (decLen-1) / BASE_DECIMAL_DIGITS + 1;

这个奇怪的公式是Java int 的写法bigLen = ceil(decLen/BASE_DECIMAL_DIGITS).(我希望它是正确的,我们稍后会对其进行测试.)

This strange formula is a Java int way of writing bigLen = ceil(decLen/BASE_DECIMAL_DIGITS). (I hope it is correct, we'll later test it.)

 int firstSome = decLen - (bigLen-1) * BASE_DECIMAL_DIGITS;

这是第一个十进制数字块的长度,应该在 1 到 9 之间(包括 1 和 9).

This is the length of the first block of decimal digits, should be between 1 and 9 (inclusive).

我们创建数组:

 int[] digits = new int[bigLen];

遍历要创建的数字:

 for(int i = 0; i < bigLen; i++) {

我们的每个数字都由原始数字中的一组数字表示:

Each of our digits is represented by a block of digits in the original number:

    String block =
        decimal.substring(Math.max(firstSome + (i-1)*BASE_DECIMAL_DIGITS, 0),
                          firstSome +   i  *BASE_DECIMAL_DIGITS);

(此处需要 Math.max 用于第一个较短的块.)我们现在使用通常的整数解析函数,并将结果放入数组中:

(The Math.max is needed here for the first shorter block.) We now use the usual Integer parsing function, and put the result into the array:

    digits[i] = Integer.parseInt(block);
}

从现在创建的数组中,我们创建我们的 DecimalBigInt 对象:

From the array now created we create our DecimalBigInt object:

return new DecimalBigInt(digits);

让我们看看这是否有效:

Let's see if this works:

DecimalBigInt d2 = DecimalBigInt.valueOf("12345678901234567890");
System.out.println(d2);

输出:

Big[12, 345678901, 234567890]

看起来不错 :-) 我们也应该用一些其他数字(不同长度)来测试它.

Looks right :-) We should test it with some other numbers (of different length) too.

下一部分将是十进制格式,这应该更容易.

Next part will be decimal formatting, this should be even easier.

我们需要将各个数字输出为 9 个十进制数字.为此,我们可以使用 Formatter 类,它支持类似 printf 的格式字符串.

We need to output our individual digits as 9 decimal digits each. For this we can use the Formatter class, which supports printf-like format strings.

一个简单的变体是这样的:

A simple variant would be this:

public String toDecimalString() {
    Formatter f = new Formatter();
    for(int digit : digits) {
        f.format("%09d", digit);
    }
    return f.toString();
}

对于我们的两个数字,这将返回 000000007000000005000000002000012345000000012345678901234567890.这适用于往返(即将它提供给 valueOf 方法给出了一个等效的对象),但前导零不太好看(并且可能与八进制数混淆).所以我们需要分解我们漂亮的 for-each 循环,并为第一个和后面的数字使用不同的格式字符串.

This returns 000000007000000005000000002000012345 and 000000012345678901234567890 for our two numbers. This works for a round-trip (i.e. feeding it to the valueOf method gives an equivalent object), but the leading zeros are not really nice to look at (and could create confusion with octal numbers). So we need to break apart our beautiful for-each loop and use a different formatting string for the first and the following digits.

public String toDecimalString() {
    Formatter f = new Formatter();
    f.format("%d", digits[0]);
    for(int i = 1; i < digits.length; i++) {
        f.format("%09d", digits[i]);
    }
    return f.toString();
}

补充.

让我们从加法开始,因为这很简单(我们可以在以后的乘法中使用它的一部分).

Addition.

Let's start with addition, as this is simple (and we can use parts of it for the multiplication later).

/**
 * calculates the sum of this and that.
 */
public DecimalBigInt plus(DecimalBigInt that) {
    ...
}

我想要你可以像阅读公式一样阅读的方法名称,因此 plus, minus, times 而不是 .

I want method names that you can read like you would read the formula, thus plus, minus, times instead of add, subtract, multiply.

那么,加法是如何工作的?它的工作原理与我们在学校学到的大于 9 的十进制数相同:添加相应的数字,如果其中一些结果大于 10(或在我们的例子中为 BASE),则进位一位到下一位.这可能会导致结果数字比原始数字多一位.

So, how does addition work? It works the same as we learned it in school for decimal numbers higher than 9: add the corresponding digits, and if for some of then the result is bigger than 10 (or BASE in our case), carry one to the next digit. This can cause the resulting number to have one digit more than the original ones.

首先我们看两个数字具有相同位数的简单情况.然后它看起来就像这样:

First we look at the simple case that both numbers have same number of digits. Then it looks simply like this:

int[] result = new int[this.digits.length];
int carry = 0;
for(int i = this.digits.length-1; i > 0; i--) {
    int digSum = carry + this.digits[i] + that.digits[i];
    result[i] = digSum % BASE;
    carry = digSum / BASE;
}
if(carry > 0) {
    int[] temp = new int[result.length + 1];
    System.arraycopy(result, 0, temp, 1, result.length);
    temp[0] = carry;
    result = temp;
}
return new DecimalBigInt(result);

(我们从右到左,所以我们可以将任何溢出带到下一位.如果我们决定使用 Little Endian 格式,这会更漂亮一些.)

(We go from right to left, so we can carry any overflows to the next digit. This would be a bit prettier if we had decided using Little Endian format.)

如果两个数字的位数不同,情况会复杂一些.

If both numbers do not have the same number of digits, it gets a bit more complicated.

为了尽可能简单,我们将其拆分为几种方法:

To let it as simple as possible, we split it to several methods:

此方法将一位数字添加到数组中的元素(可能已经包含一些非零值),并将结果存储回数组中.如果发生溢出,我们通过递归调用将其传送到下一位(索引少一个,而不是多一个).这样我们就可以确保我们的数字始终保持在有效范围内.

This method adds one digit to an element in the array (which may already contain some non-zero value), and stores the result back in the array. If there was overflow, we carry it to the next digit (which has index one less, not one more) by means of a recursive call. This way we make sure our digits stay always in the valid range.

/**
 * adds one digit from the addend to the corresponding digit
 * of the result.
 * If there is carry, it is recursively added to the next digit
 * of the result.
 */
private void addDigit(int[] result, int resultIndex,
                      int addendDigit)
{
    int sum = result[resultIndex] + addendDigit;
    result[resultIndex] = sum % BASE;
    int carry = sum / BASE;
    if(carry > 0) {
        addDigit(result, resultIndex - 1, carry);
    }
}

接下来对要添加的整个数字数组执行相同的操作:

The next does the same for a whole array of digits to add:

/**
 * adds all the digits from the addend array to the result array.
 */
private void addDigits(int[] result, int resultIndex,
                       int... addend)
{
    int addendIndex = addend.length - 1;
    while(addendIndex >= 0) {
        addDigit(result, resultIndex,
                 addend[addendIndex]);
        addendIndex--;
        resultIndex--;
    }
}

现在我们可以实现我们的plus方法:

Now we can implement our plus method:

/**
 * calculates the sum of this and that.
 */
public DecimalBigInt plus(DecimalBigInt that) {
    int[] result = new int[Math.max(this.digits.length,
                                    that.digits.length)+ 1];

    addDigits(result, result.length-1, this.digits);
    addDigits(result, result.length-1, that.digits);

    // cut of leading zero, if any
    if(result[0] == 0) {
        result = Arrays.copyOfRange(result, 1, result.length);
    }
    return new DecimalBigInt(result);
}

如果我们先看看是否有可能发生溢出,我们可以在这里做得更好,然后才创建比所需大一号的数组.

We could do a bit better here if we would look before if overflow is at all possible and only then create the array one bigger than necessary.

啊,一个测试:d2.plus(d2) 给出了 Big[24, 691357802, 469135780],看起来不错.

Ah, one test: d2.plus(d2) gives Big[24, 691357802, 469135780], which looks right.

让我们记得回到学校,我们是如何在纸上乘以更大的数字的?

Let's remember back to school, how did we multiply bigger numbers on paper?

123 * 123
----------
      369   <== 123 * 3
     246    <== 123 * 2
    123     <== 123 * 1
  --------
    15129

所以,我们必须将第一个数字的每个数字[i]与第二个数字的每个数字[j]相乘,并将结果的数字[i+j]中的乘积相加(并注意进位).当然,这里的索引是从右数起,而不是从左数起.(现在我真希望我使用的是小端数字.)

So, we have to multiply each digit[i] of the first number with each digit[j] of the second number, and add the product in digit[i+j] of the result (and pay attention to carry). Of course, here the indexes are counted from right, not from left. (Now i really wish I had used little-endian numbers.)

由于我们两个数字的乘积可能超出int的范围,我们使用long进行乘法.

Since the product of two of our digits can get outside of the range of int, we use long for multiplication.

/**
 * multiplies two digits and adds the product to the result array
 * at the right digit-position.
 */
private void multiplyDigit(int[] result, int resultIndex,
                           int firstFactor, int secondFactor) {
    long prod = (long)firstFactor * (long)secondFactor;
    int prodDigit = (int)(prod % BASE);
    int carry = (int)(prod / BASE);
    addDigits(result, resultIndex, carry, prodDigit);
}

现在我们可以明白为什么我声明了我的 addDigits 方法来接受一个 resultIndex 参数.(我只是将最后一个参数更改为 varargs 参数,以便能够在此处更好地编写.)

Now we can see why I declared my addDigits method to take a resultIndex parameter. (And I just changed the last argument to a varargs parameter, to be able to write this here better.)

所以,这里是交叉乘法:

So, here the cross-multiplying method:

private void multiplyDigits(int[] result, int resultIndex,
                            int[] leftFactor, int[] rightFactor) {
    for(int i = 0; i < leftFactor.length; i++) {
        for(int j = 0; j < rightFactor.length; j++) {

            multiplyDigit(result, resultIndex - (i + j),
                          leftFactor[leftFactor.length-i-1],
                          rightFactor[rightFactor.length-j-1]);
        }
    }
}

我希望我的索引计算是正确的.使用 little-endian 表示,它应该是 multiplyDigit(result, resultIndex + i + j, leftFactor[i], rightFactor[j]) - 更清楚,不是吗?

I hope I have the index-calculations right. With a little-endian representation, it would have been multiplyDigit(result, resultIndex + i + j, leftFactor[i], rightFactor[j]) - quite clearer, isn't it?

我们的 times 方法现在只需要分配结果数组,调用 multiplyDigits 并包装结果.

Our times method now has only to allocate the result array, invoke multiplyDigits and wrap the result.

/**
 * returns the product {@code this × that}.
 */
public DecimalBigInt times(DecimalBigInt that) {
    int[] result = new int[this.digits.length + that.digits.length];
    multiplyDigits(result, result.length-1, 
                   this.digits, that.digits);

    // cut off leading zero, if any
    if(result[0] == 0) {
        result = Arrays.copyOfRange(result, 1, result.length);
    }
    return new DecimalBigInt(result);
}

为了测试,d2.times(d2) 给出了 Big[152, 415787532, 388367501, 905199875, 19052100],这与我的 Emacs calc 在此处计算的结果相同.

For testing, d2.times(d2) gives Big[152, 415787532, 388367501, 905199875, 19052100], which is the same what my Emacs calc calculates here.

我们希望能够比较我们的两个对象.因此,我们实现了 Comparable 及其 compareTo 方法.

We want to be able to compare two of our objects. So, we implement Comparable<DecimalBigInt> and its compareTo method.

public int compareTo(DecimalBigInt that) {

如何知道我们的一个数字是否大于另一个?首先,我们比较数组的长度.由于我们注意不引入任何前导零(是吗?),较长的数组应该有更大的数字.

How to know if one of our numbers is bigger than another? First, we compare the length of the arrays. As we took care not to induce any leading zeros (did we?), the longer array should have the bigger number.

    if(this.digits.length < that.digits.length) {
        return -1;
    }
    if (that.digits.length < this.digits.length) {
        return 1;
    }

如果长度相同,我们可以按元素进行比较.由于我们使用大端(即大端在前),我们从头开始.

If the length are same, we can compare elementwise. Since we use big endian (i.e. the big end comes first), we start at the beginning.

    for(int i = 0; i < this.digits.length; i++) {
        if(this.digits[i] < that.digits[i]) {
            return -1;
        }
        if(that.digits[i] < this.digits[i]) {
            return 1;
        }
    }

如果一切都一样,显然我们的数字是相同的,我们可以返回0.

If everything was same, obviously our numbers are identical, and we can return 0.

    return 0;
}

等于 + hashCode()

每个好的不可变类都应该以合适(且兼容)的方式实现 equals()hashCode().

对于我们的 hashCode(),我们只是将数字相加,将它们与一个小素数相乘以确保数字切换不会产生相同的哈希码:

For our hashCode(), we simply sum up the digits, multiplying them with a small prime to make sure digit-switching does not result in same hash code:

/**
 * calculates a hashCode for this object.
 */
public int hashCode() {
    int hash = 0;
    for(int digit : digits) {
        hash = hash * 13 + digit;
    }
    return hash;
}

equals() 方法中,我们可以简单地委托给 compareTo 方法,而不是再次实现相同的算法:

In the equals() method we simply can delegate to the compareTo method, instead of implementing the same algorithm again:

/**
 * compares this object with another object for equality.
 * A DecimalBigInt is equal to another object only if this other
 * object is also a DecimalBigInt and both represent the same
 * natural number.
 */
public boolean equals(Object o) {
    return o instanceof DecimalBigInt &&
        this.compareTo((DecimalBigInt)o) == 0;
}


所以,今天就够了.减法(也许是负数)和除法更复杂,所以我现在省略它们.对于计算 90 的阶乘,这应该足够了.

这里是阶乘函数:

/**
 * calculates the factorial of an int number.
 * This uses a simple iterative loop.
 */
public static DecimalBigInt factorial(int n) {
    DecimalBigInt fac = new DecimalBigInt(1);
    for(int i = 2; i <= n; i++) {
        fac = fac.times(new DecimalBigInt(i));
    }
    return fac;
}

这给了我们

<代码> FAC(90)= 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000

从任意基数表示转换

在下一个关于 frodosamoa 的问题的提示下,我写了 我关于如何从我们可以(或想要)计算的任意(位置)数字系统转换的答案.(在那里的例子中,我从三进制转换为十进制,而问题是关于十进制到二进制的.)

Converting from arbitrary-radix representations

Prompted by the next question of frodosamoa, I wrote my answer about how to convert from arbitrary (positional) number systems in the one in which we can (or want to) calculate. (In the example there, I converted from trinary to decimal, while the question was about decimal to binary.)

这里我们想从任意数字系统转换(好吧,基数在 2 到 36 之间,所以我们可以使用 Character.digit() 将单个数字转换为整数) 到我们的系统基数 BASE(= 1.000.000.000,但这在这里并不重要).

Here we want to convert from an arbitrary number system (okay, with radix between 2 and 36, so we can use Character.digit() to convert single digits to ints) to our system with radix BASE (= 1.000.000.000, but this is not really important here).

基本上我们使用 Horner scheme 来计算多项式的值,以数字作为系数由基数给出的点.

Basically we use Horner scheme to calculate the value of polynomial with the digits as coefficients at the point given by the radix.

sum[i=0..n] digit[i] * radix^i

可以用这个循环计算:

value = 0;
for  i = n .. 0
  value = value * radix + digit[i]
return value

由于我们的输入字符串是大端的,所以我们不必倒数,但可以使用一个简单的增强型 for 循环.(它在 Java 中看起来更难看,因为我们没有运算符重载,也没有从 int 到我们的自动装箱DecimalBigInt 类型.)

Since our input strings are big-endian, we don't have to count down, but can use a simple enhanced for loop. (It looks more ugly in Java, since we have no operator overloading, and no autoboxing from int to our DecimalBigInt type.)

public static DecimalBigInt valueOf(String text, int radix) {
    DecimalBigInt bigRadix = new DecimalBigInt(radix);
    DecimalBigInt value = new DecimalBigInt(); // 0
    for(char digit : text.toCharArray()) {
       DecimalBigInt bigDigit =
           new DecimalBigInt(Character.digit(digit, radix));
       value = value.times(bigRadix).plus(bigDigit);
    }
    return value;
}

我的实际实现中,我添加了一些错误检查(和异常抛出)以确保我们确实有一个有效的数字,当然还有文档注释.

In my actual implementation I added some error checking (and exception throwing) to ensure that we really have a valid number, and of course a documentation comment.

转换为任意位置系统更加复杂,因为它涉及余数和除法(通过任意基数),我们还没有实现——所以现在还没有实现.当我对如何进行除法有一个好的想法时,它就会完成.(我们这里只需要除以小(一位)数,这可能比一般除法容易.)

Converting to an arbitrary positional system is more complicated, as it involves remainder and division (by the arbitrary radix), which we did not implement yet - so not for now. It will be done when I have a good idea on how to do division. (We need only division by small (one-digit) numbers here, which may be easier than a general division.)

在学校里,我学习了长除法.这是一个小(一位)除数的例子,在我们在德国使用的符号中(带有关于背景计算的注释,我们通常不会写),十进制:

In school, I learned long division. Here is an example for a small (one-digit) divisor, in the notation we use here in Germany (with annotations about the background calculations, which we normally would not write), in decimal system:

 12345 : 6 = 02057     1 / 6 =  0
-0┊┊┊┊                 0 * 6 =  0
──┊┊┊┊
 12┊┊┊                12 / 6 =  2
-12┊┊┊                 2 * 6 = 12
 ──┊┊┊
  03┊┊                 3 / 6 =  0
 - 0┊┊                 0 * 6 =  0
  ──┊┊
   34┊                34 / 6 =  5
  -30┊                 5 * 6 = 30
   ──┊
    45                45 / 6 =  7
   -42                 7 * 6 = 42
    ──
     3     ==> quotient 2057, remainder 3.

当然,我们不需要计算这些乘积 (0, 12, 0, 30, 42)如果我们有本机余数运算,则减去它们.然后看起来像这样(当然,我们这里不需要写操作):

Of couse, we don't need to calculate these products (0, 12, 0, 30, 42) and subtract them if we have a native remainder operation. Then it looks like this (of course, we here would not need to write the operations):

 12345 : 6 = 02057     1 / 6 =  0,   1 % 6 = 1
 12┊┊┊                12 / 6 =  2,  12 % 6 = 0
  03┊┊                 3 / 6 =  0,   3 % 6 = 3
   34┊                34 / 6 =  5,  34 % 6 = 4
    45                45 / 6 =  7,  45 % 6 = 3
     3
           ==> quotient 2057, remainder 3.

如果我们用另一种格式来写,这看起来已经很像 short Division.>

我们可以观察(并证明)以下内容:

This already looks quite like short division, if we write it in another format.

如果我们有一个两位数 x,第一个数字小于我们的除数 d,那么 x/d 是一位数,并且 x % d也是一位数,小于 d.这与归纳一起表明,我们只需要将(带余数的)两位数除以我们的除数.

We can observe (and prove) the following:

回到基数 BASE 的大数:所有两位数都可以表示为 Java long,并且我们有原生的 /%.

If we have a two-digit number x with first digit smaller than our divisor d, than x / d is a one-digit number, and x % d is also a one-digit number, smaller than d. This, together with induction, shows that we only ever need to divide (with remainder) two-digit numbers by our divisor.

Coming back to our big numbers with radix BASE: all two-digit numbers are representable as a Java long, and there we have native / and %.

我们现在将在循环中调用此方法,始终将上一次调用的结果作为 lastRemainder 返回.

/** * does one step in the short division algorithm, i.e. divides * a two-digit number by a one-digit one. * * @param result the array to put the quotient digit in. * @param resultIndex the index in the result array where * the quotient digit should be put. * @param divident the last digit of the divident. * @param lastRemainder the first digit of the divident (being the * remainder of the operation one digit to the left). * This must be < divisor. * @param divisor the divisor. * @returns the remainder of the division operation. */ private int divideDigit(int[] result, int resultIndex, int divident, int lastRemainder, int divisor) { assert divisor < BASE; assert lastRemainder < divisor; long ent = divident + (long)BASE * lastRemainder; long quot = ent / divisor; long rem = ent % divisor; assert quot < BASE; assert rem < divisor; result[resultIndex] = (int)quot; return (int)rem; }

We will now call this method in a loop, always feeding the result from the previous call back as lastRemainder.

该方法仍然返回一个整数,即余数.

This method still returns an int, the remainder.

现在我们想要一个返回 DecimalBigInt 的公共方法,所以我们创建了一个.它的任务是检查参数,为工作方法创建一个数组,丢弃余数,并根据结果创建一个 DecimalBigInt.(构造函数删除了可能存在的前导零.)

Now we want to have a public method returning a DecimalBigInt, so we create one. It has the task to check the arguments, create an array for the working method, discard the remainder, and create a DecimalBigInt from the result. (The constructor removes a leading zero which may be there.)

/**
 * Divides this number by a small number.
 * @param divisor an integer with {@code 0 < divisor < BASE}.
 * @return the integer part of the quotient, ignoring the remainder.
 * @throws IllegalArgumentException if the divisor is <= 0 or >= BASE.
 */
public DecimalBigInt divideBy(int divisor)
{
    if(divisor <= 0 || BASE <= divisor) {
        throw new IllegalArgumentException("divisor " + divisor +
                                           " out of range!");
    }

    int[] result = new int[digits.length];
    divideDigits(result, 0,
                 digits, 0,
                 divisor);
    return new DecimalBigInt(result);
}

我们也有一个类似的方法,它返回余数:

We also have a similar method, which returns the remainder instead:

/**
 * Divides this number by a small number, returning the remainder.
 * @param divisor an integer with {@code 0 < divisor < BASE}.
 * @return the remainder from the division {@code this / divisor}.
 * @throws IllegalArgumentException if the divisor is <= 0 or >= BASE.
 */
public int modulo(int divisor) {
    if(divisor <= 0 || BASE <= divisor) {
        throw new IllegalArgumentException("divisor " + divisor +
                                           " out of range!");
    }
    int[] result = new int[digits.length];
    return divideDigits(result, 0,
                        digits, 0,
                        divisor);
}

这些方法可以这样调用:

These methods can be invoked like this:

    DecimalBigInt d3_by_100 = d3.divideBy(100);
    System.out.println("d3/100 = " + d3_by_100);
    System.out.println("d3%100 = " + d3.modulo(100));

转换为任意基数

现在我们有了转换为任意基数的基础知识.当然,不是很随意,只允许小于BASE的基数,但这应该不是什么大问题.

Conversion to arbitrary radix

Now we have the basics to convert to an arbitrary radix. Of course, not really arbitrary, only radixes smaller than BASE are allowed, but this should not be a too big problem.

正如在另一个关于转换数字的答案中已经回答的那样,我们必须进行除法、余数、乘法、加法".乘加"部分实际上只是将各个数字放在一起,所以我们可以用简单的数组访问来代替它.

As already answered in another answer about converting numbers, we have to do "division, remainder, multiply, add. The "multiply-add" part is in fact only putting together the individual digits, so we can replace it by a simple array-access.

因为我们总是需要商和余数,所以我们不会使用公共方法modulodivideBy,而是重复调用divideDigits 方法.

As we always need both the quotient and the remainder, we won't use the public methods modulo and divideBy, but instead repeatedly call the divideDigits method.

/**
 * converts this number to an arbitrary radix.
 * @param radix the target radix, {@code 1 < radix < BASE}.
 * @return the digits of this number in the base-radix system,
 *     in big-endian order.
 */
public int[] convertTo(int radix)
{
    if(radix <= 1 || BASE <= radix) {
        throw new IllegalArgumentException("radix " + radix +
                                           " out of range!");
    }

首先,对 0 的特殊情况处理.

First, a special-case handling for 0.

    // zero has no digits.
    if(digits.length == 0)
        return new int[0];

然后,我们为结果数字创建一个数组(足够长),以及其他一些变量.

Then, we create an array for the result digits (long enough), and some other variables.

    // raw estimation how many output digits we will need.
    // This is just enough in cases like BASE-1, and up to
    // 30 digits (for base 2) too much for something like (1,0,0).
    int len = (int) (Math.log(BASE) / Math.log(radix) * digits.length)+1;
    int[] rDigits = new int[len];
    int rIndex = len-1;
    int[] current = digits;
    int quotLen = digits.length;

quotLen 是最后一个商的位数(不包括前导零).如果这是 0,我们就完成了.

quotLen is the number of digits (excluding leading zeroes) in the last quotient. If this is 0, we are done.

    while(quotLen > 0)  {

下一个商的新数组.

        int[] quot = new int[quotLen];

商和余数运算.商现在在 quot 中,rem 中的余数.

The quotient-and-remainder operation. The quotient is now in quot, the remainder in rem.

        int rem = divideDigits(quot, 0,
                               current, current.length - quotLen,
                               radix);

我们将余数放入输出数组中(从最后一位开始填充).

We put the remainder in the output array (filling it from the last digit).

        rDigits[rIndex] = rem;
        rIndex --;

然后我们交换下一轮的数组.

Then we swap the arrays for the next round.

        current = quot;

如果商中有前导零(最多会有一个,因为基数小于基数),我们将商的大小缩小一.下一个数组会更小.

If there are leading zeros in the quotient (there will be at most one, since radix is smaller than BASE), we shrink the quotient size by one. The next array will be smaller.

        if(current[0] == 0) {
            // omit leading zeros in next round.
            quotLen--;
        }
    }

在循环之后,rDigits 数组中可能会有前导零,我们将它们剪掉.

After the loop there may be leading zeros in the rDigits array, and we cut them off.

    // cut of leading zeros in rDigits:
    while(rIndex < 0 || rDigits[rIndex] == 0) {
        rIndex++;
    }
    return Arrays.copyOfRange(rDigits, rIndex, rDigits.length);
}

就是这样.不过看起来有点复杂.以下是如何使用它的示例:

That's it. It looks a bit complicated, though. Here is an example of how to use it:

    System.out.println("d4 in base 11: " +
                       Arrays.toString(d4.convertTo(11)));
    System.out.println("d5 in base 7: " +
                       Arrays.toString(d5.convertTo(7)));

这些打印 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0][1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5,6, 0],与我们之前解析的数字相同(虽然来自字符串).

These print [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0] and [1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0], just the same numbers as we parsed before (from a String, though).

基于此我们也可以格式化为字符串:

Based on this we can also format as a string:

/**
 * Converts the number to a String in a given radix.
 * This uses {@link Character.digit} to convert each digit
 * to one character.
 * @param radix the radix to use, between {@link Character.MIN_RADIX}
 *   and {@link Character.MAX_RADIX}.
 * @return a String containing the digits of this number in the
 *   specified radix, using '0' .. '9' and 'a' .. 'z' (as much as needed).
 */
public String toString(int radix) {
    if(radix < Character.MIN_RADIX || Character.MAX_RADIX < radix) {
        throw new IllegalArgumentException("radix out of range: " + radix);
    }
    if(digits.length == 0)
        return "0";
    int[] rdigits = convertTo(radix);
    StringBuilder b = new StringBuilder(rdigits.length);
    for(int dig : rdigits) {
        b.append(Character.forDigit(dig, radix));
    }
    return b.toString();
}

这篇关于如何在不使用 java.math.BigInteger 的情况下在 Java 中处理非常大的数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆