搜索资源列表
C语言实现的大整数乘法
- 此代码为两个大整数的乘法运算,支持无限多位数的乘法,只要硬件资源允许。-this code for the two large integer multiplication and support an infinite number multiplication of the median, as long as the hardware resources allow.
BigIntMultiplication
- 大整数乘法例子代码 /* 递归边界,如果是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 */ /* 递
Bigintmutiply
- 大整数乘法的分治法源码,在JDK1.51中运行-large integer multiplication of the divide-and-conquer method source code, to run in JDK1.51
MAX
- 大整数乘法的详细实行 比如说1246*2566用此法可降低时间复杂度并且能过有效算出-large integer multiplication detailed implementation of the 1246 * 2566 for instance, tried to use this method can reduce the time complexity and can Guo calculated effective
BigInteger
- dot NET 下的大整数乘法,使用FFT变换进行计算,提高了运算效率
LargeNumMultiple
- 大整数乘法的个人算法,c语言编写的源代码,个人认为是比较有特色的
dazhengshu
- 大整数乘法,C++环境下运行,可输入两个任意长的整数.
dazhengshuchengfa
- 大整数乘法,算法设计分析与设计 出自南大老师课件里面的 转载
2980
- 在北大POJ通过的高精度大整数乘法运算程序
MAXnum
- 大整数乘法 本程序中大整数由用户决定 并且算法复杂度相对叫小 有很好的可读性
大整数乘法
- n的阶乘.rar 可以求数的阶乘 是以递归算法为基础的 对学习算法设计与-n factorial. Rar can help factorial number of recursive algorithm is based on the learning algorithm design and
dividemultiply
- 这是一个分治法应用的又一个例子,利用分治技术,做大整数乘法,尤其是几百位数以上的乘法,比一般的方法快很多,仅次于快速傅立叶变换.-This is a partition of the application also an example of the use of the partition, bigger integer multiplication, especially above the median of hundreds of multiplication, than the mu
ACM,Exponentiation
- 北大ACM题集中的Exponentiation解法,效率较高,大整数乘法算法。
ddmt
- 快速傅里叶变换(Fast Fourier Transform,FFT),是离散傅里叶变换的快速算法,也可用于计算离散傅里叶变换的逆变换。快速傅里叶变换有广泛的应用,如数字信号处理、计算大整数乘法、求解偏微分方程等等。本条目只描述各种快速算法,对于离散傅里叶变换的性质和应用,请参见离散傅里叶变换。
dashuxiangcheng
- 利用分治方法设计实现大整数乘法的递归算法-Using the method of big integer partition design and realize the recursion algorithm square
large_integer
- VC++ 分治法大整数乘法-VC++ divide and conquer large integer multiplication
mult
- 实现十进制的两个n位的大整数乘法。输入两个大整数,输出两者之积。该算法比普通乘法时间复杂度低,效率高。-Achieve the decimal two n-bit large integer multiplication. Enter two large integers, the output of both of the product. The algorithm time complexity than ordinary multiplication is low, and high e
大整数乘法
- 算法分析课程设计,大整数乘法,大的整数相除(Algorithm analysis curriculum design, large integer multiplication)
大整数乘法
- 汇编实现大整数乘法 输入两个100位整数 输出结果(Assembly of large integer multiplication Enter two 100 bit integer output results)
分治法求大整数
- 利用分治法求解大整数乘法C语言版本,利用整型求,所以数偏小。