Location:
Search - BigInt.C
Search list
Description: 密码学中用的大数类,用c++实现,可以实现基本的四则运算和密码学中的常用算法,如欧几里得算法等,
Platform: |
Size: 2811 |
Author: linzheming |
Hits:
Description: 实现40位整数的加减乘除运算,正确率高,效率高!是C++编程中的好题
Platform: |
Size: 17114 |
Author: 李迈 |
Hits:
Description: 实现大整数的加减乘除法运算,C++编写.比较简单
Platform: |
Size: 8072 |
Author: tqc |
Hits:
Description: 用C++ 包装了大整数这个类,超级大的整数现在也可以用了。
Platform: |
Size: 43359 |
Author: timothy |
Hits:
Description: 餐饮管理系统数据库设计文档 表名:bzqbj(保质期报警表) 字段名 字段类型 字段长度 (0表示不允许NULL,1为允许) id bigint 8 0 id ylid varchar 50 1 原料id ylmc varchar 50 1 原料名称 diffbzq bigint 8 1 距离保质期的时间 diffbzqyj bigint 8 1 距离保质预警期的时间 bzq bigint 8 1 保质期 表名:cdb(菜单表) id varchar 50 1 mc varchar 50 1 名称 price float 8 1 价格 lbbh bigint 8 1 类别编号(typelist) dlmc varchar 50 1 大类名称 tj float 8 1 特价 sftj int 4 1 是否特价 sfjl int 4 0 是否酒类-Food Management System database design document table name : bzqbj (durability Alarm table) field names of the type field length (0 indicates not NULL, to allow a) id bigint id 8 0 50 1 ylid varchar materials id ylmc varchar 50 1 raw materials names diffbzq bigint 8 1 from the durability of time diffbzqyj bigint 8 1 warning from the durability period of time bzq bigint 8 1 durability table name : cdb (Table menu) id varchar 50 1 50 1 mc varchar name price float price lbbh 8 1 8 1 bigint category number (typelist) dlmc varchar 50 1 largest category name tj float special sftj 8 1 4 1 int whether special sfjl int whether alcoholic 4 0
Platform: |
Size: 4745216 |
Author: ccf |
Hits:
Description: 密码学中用的大数类,用c++实现,可以实现基本的四则运算和密码学中的常用算法,如欧几里得算法等,
-Cryptography with large numbers of categories, with c++ Achieve can be achieved four basic computing and cryptography in the commonly used algorithms, such as Euclid algorithm, etc.
Platform: |
Size: 3072 |
Author: linzheming |
Hits:
Description: 实现40位整数的加减乘除运算,正确率高,效率高!是C++编程中的好题-The achievement of 40 integer addition and subtraction, multiplication and division calculations, the high rate of correct and efficient! Is C++ Programming a good title
Platform: |
Size: 900096 |
Author: 李迈 |
Hits:
Description: 实现大整数的加减乘除法运算,C++编写.比较简单-Realize large integer addition and subtraction, multiplication and division operations, C++ Prepared. Relatively simple
Platform: |
Size: 910336 |
Author: tqc |
Hits:
Description: 用C++ 包装了大整数这个类,超级大的整数现在也可以用了。-With C++ Packaging a large integer in this category, the super large integer can be used now.
Platform: |
Size: 43008 |
Author: timothy |
Hits:
Description: 大数运算库源文件:BigInt.cpp
作者:afanty@vip.sina.com
版本:1.2 (2003.5.13)
说明:适用于MFC,1024位RSA运算-Large numbers computing library source files: BigInt.cpp Author: afanty@vip.sina.com Version: 1.2 (2003.5.13) Description: applicable to MFC, 1024 bit RSA operations
Platform: |
Size: 5120 |
Author: 梁增健 |
Hits:
Description: 大素数生成。用于加密解密。具体内容:用C或C++语言编写的一个生成二进制为1024位的大素数的程序。-Generate large prime numbers. For encryption and decryption. Specific elements: using C or C++ Language to prepare a generation of binary for the 1024 program of large prime numbers.
Platform: |
Size: 21504 |
Author: ye ma |
Hits:
Description: C++中 大数类,类似于JAVA中的BingInteger-C++ classes in large numbers, similar to JAVA in the BingInteger
Platform: |
Size: 2048 |
Author: 田志雨 |
Hits:
Description: 大整数的幂运算原代码(数组实现),在 dev c++中通过
-Large integer exponentiation of the original code (the array to achieve), the dev c++ through
Platform: |
Size: 1024 |
Author: 杨晓斌 |
Hits:
Description: 用c++实现的一个大整数类,可以进行加减乘除,求模,模幂,模逆运算-Using c++ to achieve a large integer class, you can add or subtract multiply and divide, seeking mold, modular power, modular inversion
Platform: |
Size: 638976 |
Author: xyh |
Hits:
Description: 实现大数运算,32bit为一个单位,封装在C++类里,简单易用,速度够快。-Operation to achieve large numbers, 32bit as a unit, encapsulated in C++ class, the easy to use, fast enough.
Platform: |
Size: 6144 |
Author: hhf |
Hits:
Description: 程序简陋,算法也不是最优。这个大整数计算的C++类也许有人还能用上。
主要功能:
1) 支持 + - * / mod这几种运算
2) 没有设计上的限制,最大可操作的数据长度取决于内存大小和操作系统(<=8G-bit,或者说1G字节)
3) 支持2-64进制,<=36进制时字母不分大小写,>36进制时字母大写和小写不同。63进制使用+,64进制使用/,即,合法的字符集[0-9][A-Z][a-z]+/。Demo中,自动转换输入时,如果输入中存在空格、回车、换行、制表符,会被自动删除掉,输入以上字符会导致界面上插入符回到编辑框的开头,有点别扭;实现类中遇到第一个超出范围的字符时就会求值,不开自动转换可能会因为输入的失误导致计算结果与预期大不相同。
4) 没有文档或其他示例。
注意:带VS2010的工程,可以重建。-no description.
Platform: |
Size: 10240 |
Author: rrrfff |
Hits:
Description: Biginteger implementation on c-Biginteger implementation on c++
Platform: |
Size: 1024 |
Author: munkhtsogt |
Hits:
Description: 基于C语言 实现大整数的加减乘法运算-bigint operation
Platform: |
Size: 2048 |
Author: wangning |
Hits:
Description: 本人编写大整数程序,c++实现,可实现几十位乃至几百位整数的四则运算-I write large integer program, c++ implementation can be realized dozens or even hundreds of integer arithmetic
Platform: |
Size: 717824 |
Author: ding |
Hits:
Description: 这是一个计算超大型整数的类,你可以直接拿来使用。它所能表示的最大数值仅取决于你的计算机的内存。它提供了两个类BigUnsigned 和
BigInteger。-You can use this library in a C++ rogram to do arithmetic on integers of size
limited only by your computer s memory. The library provides BigUnsigned and
BigInteger classes that represent nonnegative integers and signed integers,
respectively. Most of the C++ rithmetic operators are overloaded for these classes, so big-integer calculations are easy
Platform: |
Size: 39936 |
Author: james |
Hits: