CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 搜索资源 - 大整数

搜索资源列表

  1. BigIntMultiplication

    0下载:
  2. 大整数乘法例子代码 /* 递归边界,如果是1位二进制数与1位二进制数相乘,则可以直接计算 */ /*累计做1位二进制乘法运算的次数*/ /* return (X*Y) */ /* 计算n的值 */ /* 把X和Y拆分开来,令X=A*2^(n/2)+B, 左移位运算,mod = 1<<(n/2) */ /* 计算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 计算A*C,再向左移n位 */ /* 递归计算A*D */ /* 递
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:1532
    • 提供者:小城
  1. Biginteger

    0下载:
  2. 实现大整数的加减乘除及堆运算-achieving large integer arithmetic and the Reactor Operators
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:25693
    • 提供者:杨向前
  1. rr

    0下载:
  2. 大整数的又一种操作-Big Integer another operation
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:25711
    • 提供者:杨向前
  1. BigNumberCounter

    0下载:
  2. 大整数计算器,数据结构里一个很著名的算法,文本计算,也是同学编的。-large integer calculators, data structure, a well-known algorithm, text, as well as classmates series.
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:26944
    • 提供者:孙一
  1. 大整数编程001

    0下载:
  2. ...大整数四则运算
  3. 所属分类:WEB源码

    • 发布日期:2011-04-19
    • 文件大小:3506
    • 提供者:xiaoyueraymond
  1. java_sqr(big_int)

    0下载:
  2. java大整数开根号.txt 符合数位要求的大整数开根号,避免了c,c++高精度的麻烦,此题属高精度较难题,具有一定算法-java大整数开根号.txt
  3. 所属分类:Java Develop

    • 发布日期:2016-01-26
    • 文件大小:1024
    • 提供者:hujiulin
  1. BigCalculator_src

    0下载:
  2. java开发的大整数计算器,实现基本的运算,还有sin,cos,tan,cot.-java big integer calculator developed to achieve basic computing, there is sin, cos, tan, cot.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:41451
    • 提供者:xi
  1. LargeIntegerOpertion

    0下载:
  2. 这是一个用java编写的大整数加减的算法,可以输出负数,绝对正确可用。-This is a arithmetic of large integer opertion and can print negative number.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:4207
    • 提供者:
  1. caculator

    0下载:
  2. java 编写的可进行大整数运算的计算器-a canculator wrote by java
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:25662
    • 提供者:王福宽
  1. bigh

    0下载:
  2. java书写的 大整数运算 大整数运算-Writing java big integer big integer big integer arithmetic operations
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:3023
    • 提供者:qxl
  1. BigInteger

    0下载:
  2. 大整数实现,用java写的基本类,包含加减乘,没有除法-biginteger
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:7775
    • 提供者:qiuhui
  1. test1

    0下载:
  2. 分治法实现大整数乘法,其实应该用数组来保存大整数的,再考虑如何去完善这个程序。但分治算法的核心思想已经尽在其中了。-Divide and conquer method for large integer multiplication
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:765
    • 提供者:张讯
  1. IntegerMultiply

    0下载:
  2. 算法分析与设计 用递归分治算法解决大整数乘积问题(java源码)-Algorithm Analysis and Design Recursive divide and conquer algorithm to solve the problem of large integer multiplication. (Java source code)
  3. 所属分类:Java Develop

    • 发布日期:2017-11-14
    • 文件大小:636
    • 提供者:jing
  1. LargeIntegerMultiplication-DaC

    0下载:
  2. 任意长度大整数乘法的Javascr ipt实现.在webkit内核浏览器下可以正常使用-Arbitrary length large integer multiplication Javascr ipt implementation.
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-03-29
    • 文件大小:55557
    • 提供者:ltlc
  1. s2

    0下载:
  2. (2)编写程序,求满足1+2!+3!+…++(n-1)!+n!≤9000的最大整数n。-(2) Write a program, seeking to meet 1+2!+3!+ ...++ (n-1)!+n! The largest integer ≤ 9000 n.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:5652
    • 提供者:zhouqiubin
  1. Statistical_figures

    0下载:
  2. 给你一个非常大的整数x,(-10^400 <=x<= 10^400),请统计x的每一位,分别输出9,1,2出现的次数. Input 一个大整数 Output 一共三行,第一行是9出现的次数,第二行是1出现的次数,第三行是2出现的次数。 Sample Input 912912912910915902 Sample Output 6 5 4-Statistical figures
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:15938
    • 提供者:郭恒
  1. BigInteger

    0下载:
  2. BigInteger是一个自定义的大整数数据结构。可以用数组的形式实现大整数的各种操作。-BigInteger is a large integer data structure a custom. Can be achieved using the array form various operations of large integer.
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:6787
    • 提供者:Simon-4
  1. ClassInteger

    0下载:
  2. C++ 大整数类 欢迎各位下载测试 可联系285153841@qq.com-C++ class to welcome you to download large integer test may contact 285153841@qq.com
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2518
    • 提供者:fang0628406
  1. HugeInteger

    0下载:
  2. 创建一个大整数类HugeInteger,该类用一个40个元素的数组来存放一个大整数(最多不超过40位)。(1)定义几个大整数算术运算的成员函数,包括inputHugeInteger、outputHugeInteger、addHugeIntegers和substractHugeIntegers-Create a large integer class HugeInteger, with such an array of 40 elements to store a large integer (u
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:1855
    • 提供者:李四
  1. 算法分析

    0下载:
  2. 对矩阵相乘以及大整数相乘的分析以及源码,程序比较简单,没什么难度,希望有改进的算法(Analysis of matrix multiplication and multiplication of large integers and source code)
  3. 所属分类:Java编程

    • 发布日期:2018-01-01
    • 文件大小:62464
    • 提供者:zxxiao
« 12 3 »
搜珍网 www.dssz.com