java中biginteger和bigdecimal在大数计算中的使用

2024-08-28 21:58

本文主要是介绍java中biginteger和bigdecimal在大数计算中的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

java中的BigInteger和BigIntegerDecimal
当我们在做Acm的大数题时,我们会发现int,double,表示的范围有限,不能够满足要求,对于c/c++而言,我们就只能采用数组模拟的方法来实现高精度大数的操作。然而java的jdk1.5后就可以使用math包中的BigInteger和BigDecimal来帮助我们解决高精度大数和小数的问题。

1 BigInteger高精度整数的使用。下面给出一些BigInteger的函数方法
ps:参考http://www.apihome.cn/api/java/BigInteger.html具体方法请打开链接
 BigIntegerabs()
          返回其值是此 BigInteger 的绝对值的 BigInteger。
 BigIntegeradd(BigInteger val)
          返回其值为 (this + val) 的 BigInteger。
 BigIntegerand(BigInteger val)
          返回其值为 (this & val) 的 BigInteger。
 BigIntegerandNot(BigInteger val)
          返回其值为 (this & ~val) 的 BigInteger。
 intbitCount()
          返回此 BigInteger 的二进制补码表示形式中与符号不同的位的数量。
 intbitLength()
          返回此 BigInteger 的最小的二进制补码表示形式的位数,不包括 符号位。
 BigIntegerclearBit(int n)
          返回其值与清除了指定位的此 BigInteger 等效的 BigInteger。
 intcompareTo(BigInteger val)
          将此 BigInteger 与指定的 BigInteger 进行比较。
 BigIntegerdivide(BigInteger val)
          返回其值为 (this / val) 的 BigInteger。
 BigInteger[]divideAndRemainder(BigInteger val)
          返回包含 (this / val) 后跟 (this % val) 的两个 BigInteger 的数组。
 doubledoubleValue()
          将此 BigInteger 转换为 double
 booleanequals(Object x)
          比较此 BigInteger 与指定的 Object 的相等性。
 BigIntegerflipBit(int n)
          返回其值与对此 BigInteger 进行指定位翻转后的值等效的 BigInteger。
 floatfloatValue()
          将此 BigInteger 转换为 float
 BigIntegergcd(BigInteger val)
          返回一个 BigInteger,其值是 abs(this)abs(val) 的最大公约数。
 intgetLowestSetBit()
          返回此 BigInteger 最右端(最低位)1 比特的索引(即从此字节的右端开始到本字节中最右端 1 比特之间的 0 比特的位数)。
 inthashCode()
          返回此 BigInteger 的哈希码。
 intintValue()
          将此 BigInteger 转换为 int
 booleanisProbablePrime(int certainty)
          如果此 BigInteger 可能为素数,则返回 true,如果它一定为合数,则返回 false
 longlongValue()
          将此 BigInteger 转换为 long
 BigIntegermax(BigInteger val)
          返回此 BigInteger 和 val 的最大值。
 BigIntegermin(BigInteger val)
          返回此 BigInteger 和 val 的最小值。
 BigIntegermod(BigInteger m)
          返回其值为 (this mod m) 的 BigInteger。
 BigIntegermodInverse(BigInteger m)
          返回其值为 (this-1 mod m) 的 BigInteger。
 BigIntegermodPow(BigInteger exponent, BigInteger m)
          返回其值为 (thisexponent mod m) 的 BigInteger。
 BigIntegermultiply(BigInteger val)
          返回其值为 (this * val) 的 BigInteger。
 BigIntegernegate()
          返回其值是 (-this) 的 BigInteger。
 BigIntegernextProbablePrime()
          返回大于此 BigInteger 的可能为素数的第一个整数。
 BigIntegernot()
          返回其值为 (~this) 的 BigInteger。
 BigIntegeror(BigInteger val)
          返回其值为 (this | val) 的 BigInteger。
 BigIntegerpow(int exponent)
          返回其值为 (thisexponent) 的 BigInteger。
static BigIntegerprobablePrime(int bitLength, Random rnd)
          返回有可能是素数的、具有指定长度的正 BigInteger。
 BigIntegerremainder(BigInteger val)
          返回其值为 (this % val) 的 BigInteger。
 BigIntegersetBit(int n)
          返回其值与设置了指定位的此 BigInteger 等效的 BigInteger。
 BigIntegershiftLeft(int n)
          返回其值为 (this << n) 的 BigInteger。
 BigIntegershiftRight(int n)
          返回其值为 (this >> n) 的 BigInteger。
 intsignum()
          返回此 BigInteger 的正负号函数。
 BigIntegersubtract(BigInteger val)
          返回其值为 (this - val) 的 BigInteger。
 booleantestBit(int n)
          当且仅当设置了指定的位时,返回 true
 byte[]toByteArray()
          返回一个 byte 数组,该数组包含此 BigInteger 的二进制补码表示形式。
 StringtoString()
          返回此 BigInteger 的十进制字符串表示形式。
 StringtoString(int radix)
          返回此 BigInteger 的给定基数的字符串表示形式。
static BigIntegervalueOf(long val)
          返回其值等于指定 long 的值的 BigInteger。
 BigIntegerxor(BigInteger val)
          返回其值为 (this ^ val) 的 BigInteger。
我们可以利用BigInteger中的方法实现赋值,加减乘除,取模等各种运算,java中并没有重载运算符,所以不可以使用运算操作符,要使用函数。BigInteger还提供了三个常量
BigInteger.one  大数1
BigInteger.zero 大数0
BigInteger.ten 大数10
下面是是实现BigInteger基本功能的代码
import java.util.*;
import java.math.*;
public class jichu {public static void main(String[] args) {Scanner cin=new Scanner(System.in);BigInteger a,b,c;while(cin.hasNextBigInteger()){a=cin.nextBigInteger();b=cin.nextBigInteger();c=a.add(b);//计算a+bSystem.out.println(c);c=a.multiply(b);//计算a*bSystem.out.println(c);c=a.subtract(b);//计算a-bSystem.out.println(c);c=a.divide(b);//计算a/bSystem.out.println(c);c=a.mod(b);//计算a%bSystem.out.println(c);}
cin.close();}}
就是对java中类的方法的使用,细心认真就可以
2BigDecimal的使用
BigDecimal的一些基本方法,具体参考http://www.apihome.cn/api/java/BigDecimal.html

BigDecimalabs()
          返回 BigDecimal,其值为此 BigDecimal 的绝对值,其标度为 this.scale()
 BigDecimalabs(MathContext mc)
          返回其值为此 BigDecimal 绝对值的 BigDecimal(根据上下文设置进行舍入)。
 BigDecimaladd(BigDecimal augend)
          返回一个 BigDecimal,其值为 (this + augend),其标度为 max(this.scale(), augend.scale())
 BigDecimaladd(BigDecimal augend, MathContext mc)
          返回其值为 (this + augend)BigDecimal(根据上下文设置进行舍入)。
 bytebyteValueExact()
          将此 BigDecimal 转换为 byte,以检查丢失的信息。
 intcompareTo(BigDecimal val)
          将此 BigDecimal 与指定的 BigDecimal 比较。
 BigDecimaldivide(BigDecimal divisor)
          返回一个 BigDecimal,其值为 (this / divisor),其首选标度为 (this.scale() - divisor.scale());如果无法表示准确的商值(因为它有无穷的十进制扩展),则抛出ArithmeticException
 BigDecimaldivide(BigDecimal divisor, int roundingMode)
          返回一个 BigDecimal,其值为 (this / divisor),其标度为 this.scale()
 BigDecimaldivide(BigDecimal divisor, int scale, int roundingMode)
          返回一个 BigDecimal,其值为 (this / divisor),其标度为指定标度。
 BigDecimaldivide(BigDecimal divisor, int scale, RoundingMode roundingMode)
          返回一个 BigDecimal,其值为 (this / divisor),其标度为指定标度。
 BigDecimaldivide(BigDecimal divisor, MathContext mc)
          返回其值为 (this / divisor)BigDecimal(根据上下文设置进行舍入)。
 BigDecimaldivide(BigDecimal divisor, RoundingMode roundingMode)
          返回一个 BigDecimal,其值为 (this / divisor),其标度为 this.scale()
 BigDecimal[]divideAndRemainder(BigDecimal divisor)
          返回由两个元素组成的 BigDecimal 数组,该数组包含 divideToIntegralValue 的结果,后跟对两个操作数计算所得到的remainder
 BigDecimal[]divideAndRemainder(BigDecimal divisor, MathContext mc)
          返回由两个元素组成的 BigDecimal 数组,该数组包含 divideToIntegralValue 的结果,后跟根据上下文设置对两个操作数进行舍入计算所得到的remainder 的结果。
 BigDecimaldivideToIntegralValue(BigDecimal divisor)
          返回 BigDecimal,其值为向下舍入所得商值 (this / divisor) 的整数部分。
 BigDecimaldivideToIntegralValue(BigDecimal divisor, MathContext mc)
          返回 BigDecimal,其值为 (this / divisor) 的整数部分。
 doubledoubleValue()
          将此 BigDecimal 转换为 double
 booleanequals(Object x)
          比较此 BigDecimal 与指定的 Object 的相等性。
 floatfloatValue()
          将此 BigDecimal 转换为 float
 inthashCode()
          返回此 BigDecimal 的哈希码。
 intintValue()
          将此 BigDecimal 转换为 int
 intintValueExact()
          将此 BigDecimal 转换为 int,以检查丢失的信息。
 longlongValue()
          将此 BigDecimal 转换为 long
 longlongValueExact()
          将此 BigDecimal 转换为 long,以检查丢失的信息。
 BigDecimalmax(BigDecimal val)
          返回此 BigDecimalval 的最大值。
 BigDecimalmin(BigDecimal val)
          返回此 BigDecimalval 的最小值。
 BigDecimalmovePointLeft(int n)
          返回一个 BigDecimal,它等效于将该值的小数点向左移动 n 位。
 BigDecimalmovePointRight(int n)
          返回一个 BigDecimal,它等效于将该值的小数点向右移动 n 位。
 BigDecimalmultiply(BigDecimal multiplicand)
          返回一个 BigDecimal,其值为 (this × multiplicand),其标度为 (this.scale() + multiplicand.scale())
 BigDecimalmultiply(BigDecimal multiplicand, MathContext mc)
          返回其值为 (this × multiplicand)BigDecimal(根据上下文设置进行舍入)。
 BigDecimalnegate()
          返回 BigDecimal,其值为 (-this),其标度为 this.scale()
 BigDecimalnegate(MathContext mc)
          返回其值为 (-this)BigDecimal(根据上下文设置进行舍入)。
 BigDecimalplus()
          返回 BigDecimal,其值为 (+this),其标度为 this.scale()
 BigDecimalplus(MathContext mc)
          返回其值为 (+this)BigDecimal(根据上下文设置进行舍入)。
 BigDecimalpow(int n)
          返回其值为 (thisn)BigDecimal,准确计算该幂,使其具有无限精度。
 BigDecimalpow(int n, MathContext mc)
          返回其值为 (thisn)BigDecimal
 intprecision()
          返回此 BigDecimal精度
 BigDecimalremainder(BigDecimal divisor)
          返回其值为 (this % divisor)BigDecimal
 BigDecimalremainder(BigDecimal divisor, MathContext mc)
          返回其值为 (this % divisor)BigDecimal(根据上下文设置进行舍入)。
 BigDecimalround(MathContext mc)
          返回根据 MathContext 设置进行舍入后的 BigDecimal
 intscale()
          返回此 BigDecimal标度
 BigDecimalscaleByPowerOfTen(int n)
          返回其数值等于 (this * 10n) 的 BigDecimal。
 BigDecimalsetScale(int newScale)
          返回一个 BigDecimal,其标度为指定值,其值在数值上等于此 BigDecimal 的值。
 BigDecimalsetScale(int newScale, int roundingMode)
          返回一个 BigDecimal,其标度为指定值,其非标度值通过此 BigDecimal 的非标度值乘以或除以十的适当次幂来确定,以维护其总值。
 BigDecimalsetScale(int newScale, RoundingMode roundingMode)
          返回 BigDecimal,其标度为指定值,其非标度值通过此 BigDecimal 的非标度值乘以或除以十的适当次幂来确定,以维护其总值。
 shortshortValueExact()
          将此 BigDecimal 转换为 short,以检查丢失的信息。
 intsignum()
          返回此 BigDecimal 的正负号函数。
 BigDecimalstripTrailingZeros()
          返回数值上等于此小数,但从该表示形式移除所有尾部零的 BigDecimal
 BigDecimalsubtract(BigDecimal subtrahend)
          返回一个 BigDecimal,其值为 (this - subtrahend),其标度为 max(this.scale(), subtrahend.scale())
 BigDecimalsubtract(BigDecimal subtrahend, MathContext mc)
          返回其值为 (this - subtrahend)BigDecimal(根据上下文设置进行舍入)。
 BigIntegertoBigInteger()
          将此 BigDecimal 转换为 BigInteger
 BigIntegertoBigIntegerExact()
          将此 BigDecimal 转换为 BigInteger,以检查丢失的信息。
 StringtoEngineeringString()
          返回此 BigDecimal 的字符串表示形式,需要指数时,则使用工程计数法。
 StringtoPlainString()
          返回不带指数字段的此 BigDecimal 的字符串表示形式。
 StringtoString()
          返回此 BigDecimal 的字符串表示形式,如果需要指数,则使用科学记数法。
 BigDecimalulp()
          返回此 BigDecimal 的 ulp(最后一位的单位)的大小。
 BigIntegerunscaledValue()
          返回其值为此 BigDecimal非标度值BigInteger
static BigDecimalvalueOf(double val)
          使用 Double.toString(double) 方法提供的 double 规范的字符串表示形式将 double 转换为BigDecimal
static BigDecimalvalueOf(long val)
          将 long 值转换为具有零标度的 BigDecimal
static BigDecimalvalueOf(long unscaledVal, int scale)
          将 long 非标度值和 int 标度转换为 BigDecimal
  BIgDecimal和BigInteger的基本使用方法差不多,要注意消除尾0,和转化为非指数型字符串输出
基本使用代码如下
import java.util.*;
import java.math.*;
public class jichu {public static void main(String[] args) {Scanner cin=new Scanner(System.in);BigDecimal a,b,c;while(cin.hasNextBigDecimal()){a=cin.nextBigDecimal();b=cin.nextBigDecimal();c=a.add(b);//计算a+b//0.000001  0.000009System.out.println(c);//0.000010System.out.println(c.stripTrailingZeros());//消尾0输出//结果抛出异常0.00001//可以的使用MathContext()控制输出精度System.out.println(c.stripTrailingZeros().toPlainString());//消尾0转化为非指数型字符串输出,等于没舍入的完整精度  //0.00001c=a.multiply(b);//计算a*bSystem.out.println(c);c=a.subtract(b);//计算a-bSystem.out.println(c);c=a.divide(b, new MathContext(3));//计算a/控制保留三位有效数字System.out.println(c);}
cin.close();}}

以上就是java大数的基本用法,遇到具体问题再进行总结

























这篇关于java中biginteger和bigdecimal在大数计算中的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1115997

相关文章

Java NoClassDefFoundError运行时错误分析解决

《JavaNoClassDefFoundError运行时错误分析解决》在Java开发中,NoClassDefFoundError是一种常见的运行时错误,它通常表明Java虚拟机在尝试加载一个类时未能... 目录前言一、问题分析二、报错原因三、解决思路检查类路径配置检查依赖库检查类文件调试类加载器问题四、常见

Java注解之超越Javadoc的元数据利器详解

《Java注解之超越Javadoc的元数据利器详解》本文将深入探讨Java注解的定义、类型、内置注解、自定义注解、保留策略、实际应用场景及最佳实践,无论是初学者还是资深开发者,都能通过本文了解如何利用... 目录什么是注解?注解的类型内置注编程解自定义注解注解的保留策略实际用例最佳实践总结在 Java 编程

Python中模块graphviz使用入门

《Python中模块graphviz使用入门》graphviz是一个用于创建和操作图形的Python库,本文主要介绍了Python中模块graphviz使用入门,具有一定的参考价值,感兴趣的可以了解一... 目录1.安装2. 基本用法2.1 输出图像格式2.2 图像style设置2.3 属性2.4 子图和聚

windows和Linux使用命令行计算文件的MD5值

《windows和Linux使用命令行计算文件的MD5值》在Windows和Linux系统中,您可以使用命令行(终端或命令提示符)来计算文件的MD5值,文章介绍了在Windows和Linux/macO... 目录在Windows上:在linux或MACOS上:总结在Windows上:可以使用certuti

CentOS和Ubuntu系统使用shell脚本创建用户和设置密码

《CentOS和Ubuntu系统使用shell脚本创建用户和设置密码》在Linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设置密码,本文写了一个shell... 在linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设

Python使用Matplotlib绘制3D曲面图详解

《Python使用Matplotlib绘制3D曲面图详解》:本文主要介绍Python使用Matplotlib绘制3D曲面图,在Python中,使用Matplotlib库绘制3D曲面图可以通过mpl... 目录准备工作绘制简单的 3D 曲面图绘制 3D 曲面图添加线框和透明度控制图形视角Matplotlib

Pandas中统计汇总可视化函数plot()的使用

《Pandas中统计汇总可视化函数plot()的使用》Pandas提供了许多强大的数据处理和分析功能,其中plot()函数就是其可视化功能的一个重要组成部分,本文主要介绍了Pandas中统计汇总可视化... 目录一、plot()函数简介二、plot()函数的基本用法三、plot()函数的参数详解四、使用pl

使用Python实现IP地址和端口状态检测与监控

《使用Python实现IP地址和端口状态检测与监控》在网络运维和服务器管理中,IP地址和端口的可用性监控是保障业务连续性的基础需求,本文将带你用Python从零打造一个高可用IP监控系统,感兴趣的小伙... 目录概述:为什么需要IP监控系统使用步骤说明1. 环境准备2. 系统部署3. 核心功能配置系统效果展

Java 实用工具类Spring 的 AnnotationUtils详解

《Java实用工具类Spring的AnnotationUtils详解》Spring框架提供了一个强大的注解工具类org.springframework.core.annotation.Annot... 目录前言一、AnnotationUtils 的常用方法二、常见应用场景三、与 JDK 原生注解 API 的

Java controller接口出入参时间序列化转换操作方法(两种)

《Javacontroller接口出入参时间序列化转换操作方法(两种)》:本文主要介绍Javacontroller接口出入参时间序列化转换操作方法,本文给大家列举两种简单方法,感兴趣的朋友一起看... 目录方式一、使用注解方式二、统一配置场景:在controller编写的接口,在前后端交互过程中一般都会涉及