【模板】高精度计算大数相加: 1 #include 2 #include 3 #include 4 5 void add(char a[],char b[],char back[]) 6 { 7 int i,j,k,up,x,y,z,l; 8 char *c; 9 i...
分类:
其他好文 时间:
2015-05-03 11:55:09
阅读次数:
274
通过字符串数组实现两个大数相加 1 #include 2 #include 3 #include 4 5 //大数的最大位数 6 #define MAX 100 7 8 //和的最大位数 9 #define N 10110 11 int main(int argc,char *argv[])12.....
分类:
其他好文 时间:
2015-04-14 16:27:32
阅读次数:
137
题目:猴子摘香蕉一次可以摘1个或2个,总共50个,有多少种摘法?分析:得到如下规律实际上是一个斐波那契数列以下为我使用的4种解法,分别是递归、迭代、64位整型数、数组(类似于大数相加)。代码1:递归//其中加入了计时器#include<iostream>
#include<ctime>
usingna..
分类:
其他好文 时间:
2015-04-13 21:07:56
阅读次数:
178
解决超大数相加的问题的一种思路是把整形转化成字符串,废话不多说直接上代码,已经调试通过。
#include
#include
#include
using namespace std;
string add(string str1, string str2)
{
int i;
string str;
int len_str1 = str1.length();
int len_...
分类:
其他好文 时间:
2015-03-20 00:06:39
阅读次数:
247
这道题是大数相加问题,不算难,也没那么简单,要仔细。想到两种办法,第一种是使用交换区,另一种不使用交换区,更节省空间。 1 #include 2 #include 3 #include 4 5 6 int main(void) 7 { 8 char s1[1010], s2[101...
分类:
其他好文 时间:
2015-03-10 11:43:52
阅读次数:
133
详细题目点击:http://acm.hdu.edu.cn/showproblem.php?pid=1002
Problem Description
I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.
...
分类:
其他好文 时间:
2015-03-09 09:28:55
阅读次数:
178
Problem Description
Recall the definition of the Fibonacci numbers:
f1 := 1
f2 := 2
fn := fn-1 + fn-2 (n >= 3)
Given two numbers a and b, calculate how many Fibonacci numbers are in the ...
分类:
其他好文 时间:
2015-03-04 16:56:45
阅读次数:
126
转载请注明出处:http://blog.csdn.net/u012860063题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1047Problem DescriptionOne of the first users of BIT's new super...
分类:
其他好文 时间:
2015-02-14 18:48:52
阅读次数:
175
题意 从1开始 1变为01 0变为10 计数变换多少次后连续0序列的个数。题解 找规律(菲波数)+大数相加a[i]=a[i-1]+a[i-2]*2; 1 #include 2 #include 3 #include 4 #define N 1001 5 using namespace std; 6....
分类:
其他好文 时间:
2015-02-02 12:21:50
阅读次数:
275
【大数相加】
[cpp] view
plaincopy
#include
#include
char a[10001],b[10001],sum[10002];
int BigIntegerAdd(){
//两个数的长度
int lena = strlen(a);
int...
分类:
编程语言 时间:
2015-01-28 11:16:38
阅读次数:
265