Skip to content

Commit 1b15011

Browse files
committedOct 23, 2023
8318476: Add resource consumption note to BigInteger and BigDecimal
Reviewed-by: alanb, bpb
1 parent 5ba9705 commit 1b15011

File tree

2 files changed

+59
-2
lines changed

2 files changed

+59
-2
lines changed
 

‎src/java.base/share/classes/java/math/BigDecimal.java

+22-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
* operations indicated by {@linkplain RoundingMode rounding modes}
280280
* are a proper superset of the IEEE 754 rounding-direction
281281
* attributes.
282-
282+
*
283283
* <p>{@code BigDecimal} arithmetic will most resemble IEEE 754
284284
* decimal arithmetic if a {@code MathContext} corresponding to an
285285
* IEEE 754 decimal format, such as {@linkplain MathContext#DECIMAL64
@@ -292,6 +292,27 @@
292292
* such as dividing by zero, throw an {@code ArithmeticException} in
293293
* {@code BigDecimal} arithmetic.
294294
*
295+
* <h2><a id=algorithmicComplexity>Algorithmic Complexity</a></h2>
296+
*
297+
* Operations on {@code BigDecimal} values have a range of algorithmic
298+
* complexities; in general, those complexities are a function of both
299+
* the size of the unscaled value as well as the size of the
300+
* scale. For example, an {@linkplain BigDecimal#multiply(BigDecimal)
301+
* exact multiply} of two {@code BigDecimal} values is subject to the
302+
* same {@linkplain BigInteger##algorithmicComplexity complexity
303+
* constraints} as {@code BigInteger} multiply of the unscaled
304+
* values. In contrast, a {@code BigDecimal} value with a compact
305+
* representation like {@code new BigDecimal(1E-1000000000)} has a
306+
* {@link toPlainString} result with over one billion characters.
307+
*
308+
* <p>Operations may also allocate and compute on intermediate
309+
* results, potentially those allocations may be as large as in
310+
* proportion to the running time of the algorithm.
311+
*
312+
* <p>Users of {@code BigDecimal} concerned with bounding the running
313+
* time or space of operations can screen out {@code BigDecimal}
314+
* values with unscaled values or scales above a chosen magnitude.
315+
*
295316
* @see BigInteger
296317
* @see MathContext
297318
* @see RoundingMode

‎src/java.base/share/classes/java/math/BigInteger.java

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -118,6 +118,42 @@
118118
* the full supported positive range of {@code BigInteger}.
119119
* The range must be at least 1 to 2<sup>500000000</sup>.
120120
*
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>&nbsp;log&nbsp;<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+
*
121157
* @implNote
122158
* In the reference implementation, BigInteger constructors and
123159
* operations throw {@code ArithmeticException} when the result is out

0 commit comments

Comments
 (0)
Please sign in to comment.