2013年4月18日

sort排序

摘要: #include<iostream>#include<algorithm>#include<string.h>#include<stdio.h>using namespace std;struct node{ int t1; int t2;}a[100];int cmp(struct node a,struct node b){ if(a.t1>b.t1)//从小到大排序 return 0; else if(a.t1==b.t1) { if(a.t2>b.t2) return 0; else ... 阅读全文

posted @ 2013-04-18 11:28 后端bug开发工程师 阅读(315) 评论(2) 推荐(0) 编辑

hdu 1261(指数型母函数+精度计算)

摘要: 题意:易理解...分析:由指数型母函数只是知道总共有:(n1+n2+...+n(m))!/(n1!*n2!...*n(m)!),但是这个是大数的运算,所以就转换成了精度计算,这个不难。代码实现:#include<stdio.h>#include<string.h>int a[1000],len;void jiecheng(int n)//用来算n!是大数,所以用数组保存,每个数组元素保存4位{ int i,j,carry,temp; a[0]=1;len=1; for(i=2;i<=n;i++) { carry=0; for(j=0;j<le... 阅读全文

posted @ 2013-04-18 08:59 后端bug开发工程师 阅读(427) 评论(0) 推荐(0) 编辑

导航