cheng_you_know

学而时习之!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页

2014年1月29日

摘要: long long 输入 #include #include #include #include #include #include #include #include using namespace std;int main(){ int i,n; long long a,b,c,temp; bool flag; while(scanf("%d",&n)!=EOF) ... 阅读全文
posted @ 2014-01-29 23:27 cheng_you_know 阅读(445) 评论(0) 推荐(0) 编辑

摘要: #include #include #include #include #include #include #include #include using namespace std;typedef struct GSK{ int g; int s; int k;};int main(){ char A[100]; char B[100]; GSK da; ... 阅读全文
posted @ 2014-01-29 22:54 cheng_you_know 阅读(161) 评论(0) 推荐(0) 编辑

摘要: //1052 有些节点并不属于链表,因此单纯排序,会有一个case过不去#include #include #include #include #include #include #include #include using namespace std;int main(){ int n,m,i; map map_s; int color; int dom_color; ... 阅读全文
posted @ 2014-01-29 22:34 cheng_you_know 阅读(146) 评论(0) 推荐(0) 编辑

摘要: #include#include#define N 1001int main(int argc,char *argv[]){ int i,j,len; char A[N]; int B,Q[N],R; scanf("%s %d",A,&B); R=0; len=strlen(A); for(i=0;i<len;i++) { Q[i]=(... 阅读全文
posted @ 2014-01-29 22:10 cheng_you_know 阅读(105) 评论(0) 推荐(0) 编辑

摘要: //1052 有些节点并不属于链表,因此单纯排序,会有一个case过不去#include #include #include #include #include #include #include #include #define MAX_SIZE 100010using namespace std;typedef struct Node{ int _address; int key... 阅读全文
posted @ 2014-01-29 21:18 cheng_you_know 阅读(268) 评论(0) 推荐(0) 编辑

摘要: //1036#include #include #include #include using namespace std;typedef struct DATA{ char name[20]; char gender; char ID[20]; int grade;};DATA data;DATA femal_highest;DATA male_lowest;int ma... 阅读全文
posted @ 2014-01-29 12:09 cheng_you_know 阅读(218) 评论(0) 推荐(0) 编辑

摘要: //1035#include #include #include using namespace std;typedef struct DATA{ char name[50]; char password[50]; bool modify_flag;};DATA data[1501];char change(char c){ switch(c) { case '... 阅读全文
posted @ 2014-01-29 12:06 cheng_you_know 阅读(145) 评论(0) 推荐(0) 编辑

摘要: //题目考察结构体排序,刚开始有一个case超时, (1)将输入改为scanf (2)修改将string 改为char,C++的string是相对char字符串更加耗时 (3)然后对于ID比较,先前是用字符串比较函数strcmp比较耗时,修改为整型比较,就很快,最后补齐0即可 //1028#include #include #include #include #include #include #... 阅读全文
posted @ 2014-01-29 11:59 cheng_you_know 阅读(187) 评论(0) 推荐(0) 编辑

2014年1月21日

摘要: #include #include #include #include #include using namespace std;char s1[200];char s2[200];char *reverse(char *s){ if(s==NULL) return NULL; int end = strlen(s) -1; int begin = 0; ch... 阅读全文
posted @ 2014-01-21 21:54 cheng_you_know 阅读(254) 评论(0) 推荐(0) 编辑

摘要: #include #include #include #include #include using namespace std;char s1[30];char s2[30];char s3[30];char *reverse(char *s){ if(s==NULL) return NULL; int end = strlen(s) -1; int begin ... 阅读全文
posted @ 2014-01-21 21:16 cheng_you_know 阅读(179) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页