摘要: #include #include #include #define DEPTH 10 typedef int BigInteger[10100]; int comp(const BigInteger a,const int c,const int d,const BigInteger b) //大数比较 { int i,t=0,O=-DEPTH*2; if(b[0]... 阅读全文
posted @ 2016-11-17 05:12 BOSON+CODE 阅读(235) 评论(0) 推荐(0) 编辑
摘要: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1355 斐波那契数列定义如下: F(0) = 0 F(1) = 1F(n) = F(n-1) + F(n-2) 给出n个正整数a1, a2,...... an,求对应的斐波那 阅读全文
posted @ 2016-11-17 01:43 BOSON+CODE 阅读(586) 评论(0) 推荐(0) 编辑