代码搜索:BigInt

找到约 1,233 项符合「BigInt」的源代码

代码结果 1,233
www.eeworm.com/read/282414/9096683

cpp bigint.cpp

/***************************************************************** 大数运算库源文件:BigInt.cpp 作者:afanty@vip.sina.com 版本:1.2 (2003.5.13) 说明:适用于MFC,1024位RSA运算 *********************************************
www.eeworm.com/read/184008/9126350

h bigint.h

// BigInt.h: interface for the CBigInt class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_BIGINT_H__E0A91F42_DF86_11D6_B0C1_00E04C391A51__INCLUDED_)
www.eeworm.com/read/184008/9126408

cpp bigint.cpp

// BigInt.cpp: implementation of the CBigInt class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "MixedCS.h" #include "BigInt.h" #includ
www.eeworm.com/read/281803/9133567

h bigint.h

#define BI_MAXLEN 40 #define DEC 10 #define HEX 16 class CBigInt { public: int m_nSign; //记录大数的符号,支持负值运算 int m_nLength; //记录2^(32)进制的位数,0-40位之间,相当于2进制的0-1280位 unsigned
www.eeworm.com/read/281803/9133596

cpp bigint.cpp

#include "stdafx.h" #include "BigInt.h" CBigInt::CBigInt() { m_nSign=1; m_nLength=1; for(int i=0;i
www.eeworm.com/read/183642/9146523

class bigint.class

www.eeworm.com/read/183642/9146536

java bigint.java

package 大整数计算器; public class BigINT { private int Numbers[]; private boolean PlusMinus; BigINT(StringBuffer Number, boolean PlusMinus) { Numbers = new int[Number.length(
www.eeworm.com/read/379847/9174175

h bigint.h

/***************************************************************** 大数运算库头文件:BigInt.h 说明:适用于MFC,1024位RSA运算 *****************************************************************/ //允许生成1120位(二进制)的中间结果
www.eeworm.com/read/379847/9174217

cpp bigint.cpp

/***************************************************************** 大数运算库源文件:BigInt.cpp 说明:适用于MFC,1024位RSA运算 *****************************************************************/ #include "stdafx.h"
www.eeworm.com/read/378987/9211252

h bigint.h

/***************************************************************** 大数运算库头文件:BigInt.h 作者:afanty@vip.sina.com 版本:1.2 (2003.5.13) 说明:适用于MFC,1024位RSA运算 ***********************************************