代码搜索:大数分解
找到约 4,750 项符合「大数分解」的源代码
代码结果 4,750
www.eeworm.com/read/360365/10100618
plg 大数计算器.plg
Build Log
--------------------Configuration: 大数计算器 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~
www.eeworm.com/read/360365/10100624
ncb 大数计算器.ncb
www.eeworm.com/read/360365/10100627
dsw 大数计算器.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "大数计算器"=".\大数计算器.dsp
www.eeworm.com/read/360365/10100629
dsp 大数计算器.dsp
# Microsoft Developer Studio Project File - Name="大数计算器" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
www.eeworm.com/read/360365/10100630
cpp 大数计算器.cpp
#include
#include
using namespace std;
int Max(int x, int y)//求最大值
{
if(x>y)
return x;
else return y;}
int compare(string A,string B)///比较字符串形式的数的大小
{
int lenA,l
www.eeworm.com/read/423463/10558508
doc 大数的阶乘算法.doc
www.eeworm.com/read/276658/10720489
txt 大数据的处理.txt
1、把你表中经常查询的和不常用的分开几个表,也就是横向切分
2、把不同类型的分成几个表,纵向切分
3、常用联接的建索引
4、服务器放几个硬盘,把数据、日志、索引分盘存放,这样可以提高IO吞吐率
5、用优化器,优化你的查询
6、考虑冗余,这样可以减少连接
7、可以考虑建立统计表,就是实时生成总计表,这样可以避免每次查询都统计一次
8、用极量数据测试一下
...
www.eeworm.com/read/469138/6978206
txt 大数(整数类封装).txt
#include
#include
#define DIGIT 4
#define DEPTH 10000
#define MAX 100
typedef int bignum_t[MAX+1];
int read(bignum_t a,istream& is=cin){
char buf[MAX*DIGIT+1],c
www.eeworm.com/read/460783/7240773
txt 大数(整数类封装).txt
#include
#include
#define DIGIT 4
#define DEPTH 10000
#define MAX 100
typedef int bignum_t[MAX+1];
int read(bignum_t a,istream& is=cin){
char buf[MAX*DIGIT+1],c
www.eeworm.com/read/457804/7317644
txt 大数(整数类封装).txt
#include
#include
#define DIGIT 4
#define DEPTH 10000
#define MAX 100
typedef int bignum_t[MAX+1];
int read(bignum_t a,istream& is=cin){
char buf[MAX*DIGIT+1],c