CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - big integer

搜索资源列表

  1. rr

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

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

    0下载:
  2. 大数相乘,可以解决超过大整数的问题-multiply large numbers, can be resolved over the issue of large integer
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:32.78kb
    • 提供者:李林骏
  1. RSA解密和加密算法的实现和应用

    0下载:
  2. RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a,
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1.36kb
    • 提供者:胡康康
  1. Big Integer Library

    0下载:
  2. Library for Manipulating Big Integers
  3. 所属分类:源码下载

    • 发布日期:2012-02-21
    • 文件大小:46.33kb
    • 提供者:sam99gao
  1. hugeintplus.rar

    0下载:
  2. 100位的大整数加减法.输入格式可以任意,要带符号+ -,不带或者只有一个带都可以.允许输入的数前面有多个0(可以超过100).,Big Integer Plus and minus.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:76.76kb
    • 提供者:zhuo
  1. bigint

    0下载:
  2. 用C语言写的大数加法算法,可以实现大整数的加法运算-The big integer addition operation
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:11.1kb
    • 提供者:tee
  1. dashuxiangcheng

    0下载:
  2. 利用分治方法设计实现大整数乘法的递归算法-Using the method of big integer partition design and realize the recursion algorithm square
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:563byte
    • 提供者:曹萌萌
  1. bignumber.cpp

    0下载:
  2. 这是大数相乘的一般算法,采用链表的方式。实现两个大整数的加、减、乘的运算,其中乘法运算利用分治的方法解决-This is a general algorithm for multiplication of large numbers, using linked list approach. The realization of two big integer add, subtract, multiply computing, in which the use of multiplication
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:2.44kb
    • 提供者:caoxiang
  1. BigIntMultiplication

    0下载:
  2. 使用分治技术,实现的两个大整数的乘法运算-The use of sub-rule technology, the realization of two big integer multiplication
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:18.59kb
    • 提供者:wangkc
  1. ltmpp

    0下载:
  2. 密码学大整数运算的库函数,libtom,非常专业,没有基础就别下了。-Cryptography big integer computing library functions, libtom, very professional, there is no other foundation has.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:3.02kb
    • 提供者:chengfulai
  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
    • 文件大小:40.48kb
    • 提供者:xi
  1. dashu

    0下载:
  2. 多数程序设计语言处理整数的能力是有限的,如C语言中,int 类型数据范围是-32768—32767。实际问题的处理过程中往往涉及大整数的运算,如RSA加密算法要求至少64bit的整数,设计算法实现大整数的加减运算(选做乘除运算)。-Most integer programming language to deal with a limited capacity, such as the C language, int scope of the type of data is-32768-3276
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:32kb
    • 提供者:李鸿
  1. BIGIL

    0下载:
  2. 128位大整数运算源代码 源代码包含128位大整数的加减乘除、取模、乘幂、2进制和10进制转换等运算,可用于大整数运算和加解密算法。 -128 large integer computing source code source code contains 128 large integer addition and subtraction, multiplication and division, modulus, by power, 2-band and 10 hexadecimal
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-03
    • 文件大小:3.08kb
    • 提供者:
  1. Calculator

    0下载:
  2. Addition, subtraction and multiplication of big integer numbers, using string.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:171.13kb
    • 提供者:Mehdi Isaloo
  1. Big-integer--multiplies

    0下载:
  2. 用C语言解决了大数相乘的问题,CPU时间为16ms,内存战用420kb-Calculate A × B But A and B may be big integer. The biggest integer is less than 10^500.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-24
    • 文件大小:687byte
    • 提供者:xiaoxue
  1. Big-Integer

    0下载:
  2. 大整数实现500000位的运算,可以改进进行压缩加密算法。-Big Integer 500 000 operations , and can improve the compression and encryption algorithms .
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:421kb
    • 提供者:刘乐
  1. Big-Integer-Number-Addition

    0下载:
  2. big integer addition
  3. 所属分类:组合框控件

  1. big-integer

    0下载:
  2. C语言实现大整数的运算,包括加减乘除四种运算,适合初学者使用-C language implementation of large integer arithmetic, including addition and subtraction, multiplication and division operations, suitable for beginners
  3. 所属分类:Editor

    • 发布日期:2017-03-29
    • 文件大小:1.29kb
    • 提供者:fl
  1. Big-integer--multiplies

    0下载:
  2. 用C语言解决了大数相乘的问题,CPU时间为16ms,内存战用420kb-Calculate A × B But A and B may be big integer.The biggest integer is less than 10^500.
  3. 所属分类:Communication

    • 发布日期:2017-04-12
    • 文件大小:815byte
    • 提供者:xie271359
  1. BigInteger_src

    0下载:
  2. Big Integer For C# Source
  3. 所属分类:其他

    • 发布日期:2018-04-21
    • 文件大小:25kb
    • 提供者:BKITbaby
« 12 3 4 5 6 »
搜珍网 www.dssz.com