|
1 | 1 | /*
|
2 |
| - * Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
118 | 118 | * the full supported positive range of {@code BigInteger}.
|
119 | 119 | * The range must be at least 1 to 2<sup>500000000</sup>.
|
120 | 120 | *
|
| 121 | + * @apiNote |
| 122 | + * <a id=algorithmicComplexity>As {@code BigInteger} values are |
| 123 | + * arbitrary precision integers, the algorithmic complexity of the |
| 124 | + * methods of this class varies and may be superlinear in the size of |
| 125 | + * the input. For example, a method like {@link intValue()} would be |
| 126 | + * expected to run in <i>O</i>(1), that is constant time, since with |
| 127 | + * the current internal representation only a fixed-size component of |
| 128 | + * the {@code BigInteger} needs to be accessed to perform the |
| 129 | + * conversion to {@code int}. In contrast, a method like {@link not()} |
| 130 | + * would be expected to run in <i>O</i>(<i>n</i>) time where <i>n</i> |
| 131 | + * is the size of the {@code BigInteger} in bits, that is, to run in |
| 132 | + * time proportional to the size of the input. For multiplying two |
| 133 | + * {@code BigInteger} values of size <i>n</i>, a naive multiplication |
| 134 | + * algorithm would run in time <i>O</i>(<i>n<sup>2</sup></i>) and |
| 135 | + * theoretical results indicate a multiplication algorithm for numbers |
| 136 | + * using this category of representation must run in <em>at least</em> |
| 137 | + * <i>O</i>(<i>n</i> log <i>n</i>). Common multiplication |
| 138 | + * algorithms between the bounds of the naive and theoretical cases |
| 139 | + * include the Karatsuba multiplication |
| 140 | + * (<i>O</i>(<i>n<sup>1.585</sup></i>)) and 3-way Toom-Cook |
| 141 | + * multiplication (<i>O</i>(<i>n<sup>1.465</sup></i>)).</a> |
| 142 | + * |
| 143 | + * <p>A particular implementation of {@link multiply(BigInteger) |
| 144 | + * multiply} is free to switch between different algorithms for |
| 145 | + * different inputs, such as to improve actual running time to produce |
| 146 | + * the product by using simpler algorithms for smaller inputs even if |
| 147 | + * the simpler algorithm has a larger asymptotic complexity. |
| 148 | + * |
| 149 | + * <p>Operations may also allocate and compute on intermediate |
| 150 | + * results, potentially those allocations may be as large as in |
| 151 | + * proportion to the running time of the algorithm. |
| 152 | + * |
| 153 | + * <p>Users of {@code BigInteger} concerned with bounding the running |
| 154 | + * time or space of operations can screen out {@code BigInteger} |
| 155 | + * values above a chosen magnitude. |
| 156 | + * |
121 | 157 | * @implNote
|
122 | 158 | * In the reference implementation, BigInteger constructors and
|
123 | 159 | * operations throw {@code ArithmeticException} when the result is out
|
|
0 commit comments