搜索资源列表
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 */ /* 递
superInt
- 超大整数乘法,由于时间原因还没有加上小数功能,要是有人作出来请与我联系,不胜感激-large integer multiplication, for reasons of time, with no decimal function if it were made to please contact me. be grateful! !
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
- 大整数乘法 本程序中大整数由用户决定 并且算法复杂度相对叫小 有很好的可读性
longint
- 超长整数乘法源程序-long integer multiplication source
大数乘法
- 我的数据结构的课程设计,是长整数的乘法,内含完整的原代码和详细的设计思路, 当时老师给我判的是优秀,好东西当然给大家分享; 有问题请和我联系 email:huxiaoyong1983@163.com qq:43808128 tel:13562165387-the data structure of the curriculum design, is a long integer multiplication, containing the complete source code and det
十进制整数乘法
- 微机实验程序。实现任意两个9位内的正整数十进制相乘。
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)
长整数乘法
- 这时两个长整数的乘法,直接用c++里的乘法会位数不够。。。(Multiplication of super long integers)
大整数乘法
- 汇编实现大整数乘法 输入两个100位整数 输出结果(Assembly of large integer multiplication Enter two 100 bit integer output results)
分治法求大整数
- 利用分治法求解大整数乘法C语言版本,利用整型求,所以数偏小。