搜索资源列表
ECDSA
- 椭圆曲线数字签名算法的VC实现,包括大整数类的实现和ECC算法的实现。
C++Assignments
- 华东师范大学(面向对象程序设计基于C++)课程全部作业(12次)代码,包含一个大整数类。(包含作业内容) 1 How to use VC++ & IBM Visual Age (XL) C++ 2 Pointers, Arrays and Structures 3 Operators & Statements 4 Functions 5 Use of classes in STL 6 Define conc
bigintsz
- 本代码是一个大整数类的定义,采用函数重载实现,可以定义任意大的整数。
可用于数论计算的无符号大整数类
- 可以进行无限制的整数计算-can unrestricted rounding
bigint
- 大整数类的汇编实现! 效率很高啊,正确性没问题!我已经用过了-large integer type compilation of achievement! Ah high efficiency, accuracy No problem! I have used the
verylong
- 大整数类,具有一般整数的几乎所有运算,具体包括:四则运算,输入输出,求模幂,乘法,矩阵求模幂,重载了所有int类型的运算符,int,long 等数据的兼容。使用方法与int,long等类型完全一致。
dazenshu
- 本程序为大整数类的程序,希望对大家有所帮助,在不对之处望大家见谅啊!
Biginteger
- 大整数类,用于处理大整数的加减乘除等 效率较高。
BigInteger
- 一个基于c#的大整数类,内含各种大整数的操作
reply_1_257254
- 我写的那算法只是原理,要实用必须实现一个大整数类(用c++,我的算法是C的)。欢迎和我联系讨论-I wrote that the only algorithm principle, to be practical realization of such a large integers (with c, I C algorithms). And I welcome the discussion link
BigInterger
- C# 实现的大整数类,生成一个伪大素数,大整数之间的运算以及转化成不同编码的输出
LLongInt
- 一个大整数运算类,其中用了Windows下的汇编语言做了优化,在Visual C++ .NET下编译通过-A large category of integer calculations, which used the Windows under optimized assembly language, in the Visual C++. NET compiler passed under
CHSInt128
- 一个128位大整数类--An class of 128 bit long integers
可用于数论计算的无符号大整数类
- 可以进行无限制的整数计算-can unrestricted rounding
bigint_zxf
- 一个很好用的大整数的类, 最大可支持9999990位的十进制整数, 可进行大整数的加、减、乘、除和取模运算,并带有求大整数的 最大公因数、扩展Euclidean算法、中国剩余定理算法、 Miller-Rabin素性测试算法、随机生成任意位的大整数等函数库, 这个类的动态库曾用于商业软件之中,其可靠性和速度是得到 确认的。用于商业目的可能需要注册。-a good use of the integer type, the
verylong
- 大整数类,具有一般整数的几乎所有运算,具体包括:四则运算,输入输出,求模幂,乘法,矩阵求模幂,重载了所有int类型的运算符,int,long 等数据的兼容。使用方法与int,long等类型完全一致。-Large integer type, a general integral for almost all computing, including: four computing, input and output, and modula
BigInt
- 大数类,在一个基本大数类的基础上进行了新的封装。 可以实现大整数的加减乘除模比较复制等操作,还有浮点数的加减乘数运算。-BTNumber BigNumber
main
- 对一些超出整型数范围的正整数的应用,需要自己想办法解决的存储和运算。一种解决方案是用单链表存储一个正整数。注意,数字是用逆序存储的。试设计一个类处理任意大整数,必须实现输入输出操作、加法操作和赋值操作。(For some applications that are beyond the integer range of positive integers, they need to store and compute their own
大整数的运算
- 大整数运算采用vc++6.0开发,采用链表这个数据结构(不使用标准模板类的链表类(list)和函数),大整数的长度不受限制 ,能进行加减乘除和指数运算。附加实验报告(The large integer operation uses the vc++6.0 development, uses the chain table data structure (without the use of standard template class
bigint
- 实现大整数类设计一个程序实现两个任意长的整数(包括正数和负数)、任意精度实数的算术运算。 提示: (1)用动态链表存贮数据,每结点含一个整型变量,表示若干位数(Support for an integer with arbitrary accuracy and its operation)