上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要: View Code以上使用数组做的以下使用链表#include#includetypedef struct Node *PtrToNodetypedef PtrToNode Listtypedef PtrToNode Positionstruct Node{ ElementType Eleme... 阅读全文
posted @ 2015-06-25 16:28 Gabyler 阅读(1235) 评论(0) 推荐(0) 编辑
摘要: //计算最大子列和,T(n)=O(n^2)#include #include //一旦由i确定左端,thisSum就从左端往右加,加一个值更新一次thisSum//当第二个数作为左端时,thisSum要归0,因为这代表着第二种序列int main(){ int a[n]; int i,j... 阅读全文
posted @ 2015-06-24 14:16 Gabyler 阅读(470) 评论(0) 推荐(0) 编辑
摘要: //计算多项式a0+a1*x+a2*x^2+...+an*x^n#include #include int main(){ int ar[n]; for(i=0;i=0;i--) { p = p*x + a[i]; } return 0;}View Cod... 阅读全文
posted @ 2015-06-23 21:30 Gabyler 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #define MAX 15int main(){ int i,j,sum=0; char s1[MAX],s2[MAX]; scanf("%s %s",s1,s2); for(i=0; i<strlen(s1); i++... 阅读全文
posted @ 2015-06-23 16:44 Gabyler 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint main(){ char str[100]; int i; while(gets(str) != NULL) { if(str[0] == '#') break; f... 阅读全文
posted @ 2015-06-23 16:26 Gabyler 阅读(181) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ char s1[6],s2[6]; int a,b,i,j,n; scanf("%d",&n); while(n--) { a=0;b=0; scanf("%s %s",s1,s2)... 阅读全文
posted @ 2015-06-23 15:51 Gabyler 阅读(353) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ while(1) { int i,sum=0,max=0,min=999,t; for(i=0; i max) max=t; if(t < min)... 阅读全文
posted @ 2015-06-23 13:17 Gabyler 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 题意:a的n方=b,a这个整数与b开n方的值相近,分别向上取整和向下取整,同时n方,b一定介于这两个整数之间,然后比较这两个数与b的距离,取最近的收获:c++的cei和floor函数在c中的向上取整和向下取整函数为:double a;(int)a --向下取整 (int)a+1 ---向上... 阅读全文
posted @ 2015-06-20 14:15 Gabyler 阅读(236) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint main(){ char str[260]; int len,i,sum; while(gets(str) != NULL && str[0] != '#') { sum=0; len=s... 阅读全文
posted @ 2015-06-20 12:09 Gabyler 阅读(92) 评论(0) 推荐(0) 编辑
摘要: #include #include int T(int n){ int sum=0,i; for(i=1;i<=n;i++) { sum+=i; } return sum;}int main(){ int n,tmp,k,cout=0; sca... 阅读全文
posted @ 2015-06-20 11:36 Gabyler 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页