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

搜索资源列表

  1. 大数运算类

    0下载:
  2. 一个用C++写的大数运算类,支持大数的加,减,乘,除和模运算,速度快。-C wrote a majority of the computing categories, large numbers support the addition, subtraction, multiplication and addition and modular, fast.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:3940
    • 提供者:cai
  1. RsaTool.自己写的RSA算法工具

    1下载:
  2. 自己写的RSA算法工具。支持RSA密钥产生(包括CRT)、RSA运算、强素数生成、大数运算等功能。用了的都说好。,Writing their own tools of the RSA algorithm. Support for RSA Key Generation [including CRT], RSA computation, strong prime number generation, large numbers computing functions. Use of that goo
  3. 所属分类:加密解密

    • 发布日期:2017-03-22
    • 文件大小:121984
    • 提供者:1234
  1. rsa

    1下载:
  2. 来自putty的大数运算代码,纯C实现,移植性好,RSA的最实现-Large numbers from the putty operation code, a pure C implementation, migration is good, RSA best to achieve
  3. 所属分类:加密解密

    • 发布日期:2012-11-07
    • 文件大小:8565
    • 提供者:王高全
  1. gjdsf

    0下载:
  2. 能够实现大数运算的高精度算法的c语言实现-To achieve high-precision algorithm for computing large numbers of c language
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:2240
    • 提供者:wang
  1. BigNum

    0下载:
  2. 构造大数运算类 +;-;*;/ 并测试。<br>1. 不考虑括号 <br>2. 输入数据最大长度为40 位,要捕获异常 <br>3. 不考虑输入小数部分,<br>4. 测试要完整,先输入两个数,可输出上面两个数的运算结果 <br>5. 需要输出商和余数-Construction of large numbers+-*/computing and test category. <br> 1. Not consider brac
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-04
    • 文件大小:13583
    • 提供者:heqin
  1. RSA

    0下载:
  2. 利用C语言编写的RSA加解密代码,实现了基本的RSA加解密过程,主要是大数运算的实现以及质数的求解-Written in C language using RSA encryption and decryption code, and to achieve the basic RSA encryption and decryption process, the key is the realization of operations of large numbers, as well as th
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:618152
    • 提供者:佘曼桂
  1. C-rsa

    0下载:
  2. 利用C语言编写的RSA加解密代码,实现了基本的RSA加解密过程,主要是大数运算的实现以及质数的求解-Written in C language using RSA encryption and decryption code, and to achieve the basic RSA encryption and decryption process, the key is the realization of operations of large numbers, as well as th
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-28
    • 文件大小:618250
    • 提供者:佘曼桂
  1. CSBigInteger

    0下载:
  2. 一个自己写的 C# BigInteger 类,.net 类库中没有 BigInteger 类,写此类是为了与 java 中的 BigInteger 对应,以方便大数运算-One wrote it myself C# BigInteger Class,. Net library does not BigInteger class, write these in order to correspond with the java in the BigInteger to facilitate the
  3. 所属分类:CSharp

    • 发布日期:2017-03-24
    • 文件大小:14473
    • 提供者:ajtlnui
  1. RandomInt

    0下载:
  2. 大数四则运算,实现加减乘除以及模运算,c++语言实验,比较实用-big number algorithm,add,minus,multiple and mod
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-30
    • 文件大小:273096
    • 提供者: 李好
  1. BigInt_rsa

    0下载:
  2. 标准c语言大数运算函数库,并附应用实例rsa加密程序。参考afanty编写适用与MFC的BigInt库。-Standard library c language operator of large numbers, with application examples rsa encryption. Reference afanty prepared for the BigInt with the MFC library.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:6922
    • 提供者:李抒昌
  1. 1

    0下载:
  2. 大数运算C++源代码 有重+ -*/ << >> 用于处理大数运算-Operation of large numbers C++ source code to heavy+-*/< < > >
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-13
    • 文件大小:2084
    • 提供者:法发
  1. stringCalculate

    0下载:
  2. C++大数运算源码,支持+ - * /,支持带符号输入,无位数限制,真正大数计算-C++ source computing large numbers
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:353409
    • 提供者:hu junqing
  1. c-P-P-algorithm-procedures

    0下载:
  2. 程序开始运行,要求用户首先输入两个大数。 然后进行菜单选择,进行相应的大数运算。 分析说明:由于大数的范围太大,不能直接定义为int或者float等, 所以我们的想法就是定义成字符串类型, 输入的数字一位一位地存入字符数组里面。 然后在运算的时候也是一位一位地运算。 这个过程就得从最基本的数学运算法则做起,不乏多种判断。 涉及到数组和指针的应用。最难的就是判断情 况还有应用数组和指针过程中出现的多种未可预知的错误, 还得通过逐步调试慢慢找出。我们先从加减
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:275502
    • 提供者:yang
  1. GMP_src

    0下载:
  2. GMP大数运算C语言程序库源代码版本5.05-GMP of large numbers arithmetic library source code
  3. 所属分类:Algorithm

    • 发布日期:2017-05-08
    • 文件大小:1929806
    • 提供者:wangwang
  1. C-Program-examples

    0下载:
  2. 河内塔 费式数列 巴斯卡三角形 三色棋 老鼠走迷官(一) 老鼠走迷官(二) 骑士走棋盘 八个皇后 八枚银币 生命游戏 字串核对 双色、三色河内塔 背包问题(Knapsack Problem) 数、运算 蒙地卡罗法求 PI Eratosthenes筛选求质数 超长整数运算(大数运算) 长 PI 最大公因数、最小公倍数、因式分解 完美数 阿姆斯壮数 最大访客数 中序式转
  3. 所属分类:Project Manage

    • 发布日期:2017-03-23
    • 文件大小:64768
    • 提供者:李艳文
  1. c

    0下载:
  2. 大数运算,包括加法,减法,乘法,除法,c语言代码。-Majority of computing c language code
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:1767
    • 提供者:phi
  1. C-algorithm

    0下载:
  2. C语言经典算法大全,其中包含了河内之塔、 生命游戏、超长整数运算(大数运算)、快速排序法等经典的C语言算法的详细介绍及源代码.-C language classical algorithm Guinness, which includes the Tower of Hanoi, Game of Life, long integer arithmetic (computing large numbers), and other classic quick sort algorithm C lang
  3. 所属分类:CSharp

    • 发布日期:2017-05-07
    • 文件大小:1057638
    • 提供者:熊健东
  1. 大数运算类(支持大数的加减乘除和赋值运算)

    0下载:
  2. 大数运算类(支持大数的加减乘除和赋值运算)(The operation of large numbers (class support large numbers of add, subtract, multiply and divide and assignment operators))
  3. 所属分类:

    • 发布日期:2017-12-23
    • 文件大小:3072
    • 提供者:SuperMari
  1. 大数运算

    0下载:
  2. 理论上支持无限大数的四则运算,使用c++编写。(Theoretically support the infinite number of four operations, the use of c prepared.)
  3. 所属分类:加密解密

  1. C经典算法大全

    0下载:
  2. 51个经典的算法,例如 Algorithm Gossip: 生命游戏 Algorithm Gossip: 字串核对 Algorithm Gossip: 双色、三色河内塔 Algorithm Gossip: 背包问题(Knapsack Problem) Algorithm Gossip: 蒙地卡罗法求PI Algorithm Gossip: Eratosthenes 筛选求质数 Algorithm Gossip: 超长整数运算(大数运算) Algorithm Gossip: 长PI
  3. 所属分类:文章/文档

    • 发布日期:2018-05-02
    • 文件大小:1076224
    • 提供者:ljke
« 12 3 4 »
搜珍网 www.dssz.com