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

搜索资源列表

  1. FFT

    0下载:
  2. FFT是离散傅里叶变换的快速算法,也可用于计算离散傅里叶变换的逆变换。快速傅里叶变换有广泛的应用,如数字信号处理、计算大整数乘法、求解偏微分方程-The FFT is a fast algorithm, can also be used to calculate the discrete Fourier transform of the inverse transform of the discrete Fourier transform. Fast Fourier Transform of a
  3. 所属分类:Communication-Mobile

    • 发布日期:2017-11-13
    • 文件大小:7648
    • 提供者:chenguiquan
  1. Large-integer-addition

    0下载:
  2. 大整数加法,实现最长为250个数字的加法运算。-Large integer addition
  3. 所属分类:Algorithm

    • 发布日期:2017-11-15
    • 文件大小:659
    • 提供者:Aquarius
  1. fibonacci

    0下载:
  2. 实现大整数或超大整数斐波那契数的输出(使用类和大整数加法实现).-Easily print the big Fibonacci numbers.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-25
    • 文件大小:2350107
    • 提供者:Aquarius
  1. Large-integer-factorial

    0下载:
  2. 采用visualC++实现大整数阶乘算法,适合参加ACM和蓝桥杯的同志学习-Learn from Comrade large integer factorial algorithm visualC++ suitable to participate in the ACM and Blue Bridge Cup
  3. 所属分类:Data structs

    • 发布日期:2017-11-10
    • 文件大小:207593
    • 提供者:lin
  1. dazhengshu

    0下载:
  2. 本程序是数据结构作业之一,其用数组实现了大整数的基本操作。基本操作包括:加法、减法、取模、移位等。-This program is one of the jobs of a data structure, use the array to achieve the basic operation of large integers. Basic operations: addition, subtraction, modulo, shift.
  3. 所属分类:source in ebook

    • 发布日期:2017-12-01
    • 文件大小:3806
    • 提供者:田顺建
  1. Fermat_RSAkey

    1下载:
  2. 从RSAkey.txt中读取已生成的RSA密钥,形如n=pq(p和q皆为素数)的大整数,采用费马因子分解法对其分解,输出分解的结果和所费时间(单位为秒)。-Read from the RSAkey.txt RSA key, shaped like a large integer n = pq (p and q are prime numbers), using Fermat factorization method, decomposition, output decomposition res
  3. 所属分类:Algorithm

    • 发布日期:2017-11-06
    • 文件大小:1243
    • 提供者:关浩宇
  1. Miracl-for-Sample

    0下载:
  2. 大整数库Miracl的简单模版,用于了解vc++下miracl的代码编程,很不错的教学资料-Large the integer library miracl the simple template used to the understanding of vc++ under miracl the code programming, very good teaching and learning materials
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-11-15
    • 文件大小:1311197
    • 提供者:涛涛
  1. Large-integer-factorial

    0下载:
  2. 本实例实现了一个计算大整数阶乘的程序。通常使用递归来计算一个整数的阶乘。但是, 因为ii.算本身能够表示的最大整数是有限的,所以能够计算的阶乘整数要受到限制。本程序使 用数组来存储结果,因而很好地解决了这个问题,只要有足够大的数组就能计.任意大的整数0-Examples of the realization of a to calculate large integer factorial program. Usually use recursion to calculate the facto
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-14
    • 文件大小:754
    • 提供者:hxk
  1. c

    0下载:
  2. 计算无符号大整数,包含加减乘除的基本运算-Calculation of unsigned integers, contains basic operations (add, subtract, multiply or divide
  3. 所属分类:MPI

    • 发布日期:2017-11-24
    • 文件大小:1762
    • 提供者:dike
  1. CryptDemo

    0下载:
  2. RSA,Elgamal,EcElgamal加解密算法的演示程序。内含大整数处理代码。-failed to translate
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-22
    • 文件大小:495776
    • 提供者:cloutar
  1. lmy11.14-HugeInt

    0下载:
  2. 编写的一个20位的大整数的类,包括大整数的加减乘除法-include the class of hugeint
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-14
    • 文件大小:757143
    • 提供者:林沐扬
  1. 2

    0下载:
  2. 定义实现大整数运算的类LINT,该类实现两个100位以内的大整数的加法和结果输出。 类可以有如下的类似定义: class LINT { private: // …… public: LINT(char*) LINT operator+(const LINT& L) ostream& operator<<(const ostream& os, const LINT& L) // …… } 要求: 1)构造
  3. 所属分类:Other systems

    • 发布日期:2017-11-14
    • 文件大小:573
    • 提供者:Elena
  1. cata

    0下载:
  2. ▲问题描述: (1) 设计一个表示高精度整数的模板类,它支持对任意大整数的输入、输出和四则运算(+、-、*、/),其中除法运算应输出所得的商和余数。 (2) 用上述高精度整数的模板类,计算大整数组合数和Catalan数的精确值。 组合数C(m,n)=m! / (n!*(m-n)!) Catalan数定义为:C(n)=C(2*n,n)/(n+1) ▲编程任务: 给定大整数m和n,计算C(m,n)和C(m)的精确值。 ▲数据输入: 由文件input.txt
  3. 所属分类:CSharp

    • 发布日期:2017-11-12
    • 文件大小:683
    • 提供者:linyb
  1. polynomial

    0下载:
  2. H11增强Polynomial类 (1) 以动态数组实现多项式类。多项式系数的最大上限为int数据类型能表示的最大整数,但在构建对象时不指定系数上限 (2) 对两个Polynomial类对象的运算,分别重载“+”“-”运算,并能够级联调用 (3) 重载“<<”操作符,并能级联调用。 (4) 重载赋值运算符“=”,思考为何必须重载该运算符,如果不重载会发生什么问题? -H11 Enhanced the Polynomial class (1) dynamic arr
  3. 所属分类:source in ebook

    • 发布日期:2017-11-24
    • 文件大小:1651
    • 提供者:张国
  1. 2-11

    0下载:
  2. 本次程序设计是对于计算机中超过整型数范围的整数,要解决这类数的存储和运算,用单链表进行存储,同时这个大整数的类要实现4个功能:输入、输出、加法和赋值。-This program is designed for computer over the range of integer integer numbers to solve this kind of storage and computing, a single linked list for storage, while the large
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-27
    • 文件大小:3714274
    • 提供者:sherrycheng
  1. BigNUmber

    0下载:
  2. 两个大整数相加的C语言程序 用数组实现的 简单易懂。-Big Numbers plus
  3. 所属分类:Other systems

    • 发布日期:2017-11-23
    • 文件大小:996021
    • 提供者:nigel
  1. RSA_cPP

    0下载:
  2. RSA算法C++代码实现 包括大整数的一些定义等-C++ source code of RSA
  3. 所属分类:CA program

    • 发布日期:2017-11-19
    • 文件大小:1919
    • 提供者:wende
  1. add

    0下载:
  2. 大整数加法 当相加的位数较大时 便于算出详尽的答案-When a large sum of digits integer addition large easy to calculate detailed answers
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-09
    • 文件大小:824
    • 提供者:雅婷
  1. big

    0下载:
  2. 大整数高精度运算,类实现 并用矩阵变换速度更快-Large high-precision integer arithmetic
  3. 所属分类:Other systems

    • 发布日期:2017-12-08
    • 文件大小:1422
    • 提供者:wangzi
  1. gongcheng

    0下载:
  2. 实现实数、复数、各种进制下的科学计算 大整数计算 线性代数计算 多项式求复数根的计算 多功能计算器-For all real Numbers, complex, in base of scientific computing Large integer calculation Linear algebra calculation The calculation of roots of polynomials and the plural Multi-functio
  3. 所属分类:Data structs

    • 发布日期:2017-12-08
    • 文件大小:15601927
    • 提供者:追随我心
« 1 2 ... 15 16 17 18 19 2021 22 23 24 25 ... 43 »
搜珍网 www.dssz.com