代码搜索:大数分解
找到约 4,750 项符合「大数分解」的源代码
代码结果 4,750
www.eeworm.com/read/443457/7633025
cpp 1002(大数加法).cpp
//大数加法转高精度加法
#include
#include
const long MAX=1005;
void transform(char str[],long result[])
{
long len=strlen(str),i;
memset(result,0,sizeof(long)*MAX);
for(result[0]=
www.eeworm.com/read/440234/7691715
txt 大数阶乘算法.txt
#include
int main()
{
int n; //阶乘大小
printf("请输入n的大小:");
scanf("%d",&n); //从键盘接收阶乘大小
int a[200]; //确保保存最终运算结果
www.eeworm.com/read/142055/12967048
ppt 大数的阶层.ppt
www.eeworm.com/read/268553/6305822
doc 大数乘法结构.doc
www.eeworm.com/read/494459/6376639
cpp 超大数加法.cpp
#include
#include
#define HUNTHOU 10000
typedef struct node
{
int data;
struct node *next;
}NODE; /*定义链表结构*/
NODE *insert_after(NODE *u,int num); /*在u结点后插
www.eeworm.com/read/492896/6411830
txt 大数求模 .txt
//大数求模
//调用形式:N.Mod(A),返回值:N%A
//求模与求商原理相同
CBigInt CBigInt::Mod(CBigInt& A)
{
CBigInt X,Y;
int len;
unsigned __int64 num,div;
unsigned long carry=0;
X.Mov(*this);
while(X.Cmp(A)>0)
www.eeworm.com/read/483343/6604973
sln pp大数阶乘.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pp大数阶乘", "pp大数阶乘\pp大数阶乘.vcproj", "{29F91421-221A-4A02-8D4B-319
www.eeworm.com/read/483343/6604974
ncb pp大数阶乘.ncb
www.eeworm.com/read/483343/6604987