上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页
摘要: #include #include #include #include using namespace std; int temp[100]; int num=0; void Merge(int a[],int left,int mid,int right){ int i=left,j=mid+1,n=0,length=right-left; while(ia[j]){ ... 阅读全文
posted @ 2018-12-26 23:04 bluefly-hrbust 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; typedef struct { int *top; int *base; int stack_size; }stacks; void creat_stack(stacks &a){ a.base=(int *)malloc(100*sizeof(int)); a... 阅读全文
posted @ 2018-12-26 09:35 bluefly-hrbust 阅读(132) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; typedef struct Lnode { int data; Lnode *next; } Lnode,*linklist; void creat_h(linklist &L) //头插法 { linklist s; int n,tmp; ... 阅读全文
posted @ 2018-12-23 20:14 bluefly-hrbust 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; typedef struct Lnode{ int data; Lnode *next; }Lnode,*linklist; void creat_h(linklist &L){//头插法 linklist s; int n,tmp; L=(linkli... 阅读全文
posted @ 2018-12-23 18:54 bluefly-hrbust 阅读(1467) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;typedef struct sqlist{ int *elem; int length;}Sqlist;void 阅读全文
posted @ 2018-12-22 22:46 bluefly-hrbust 阅读(125) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> #include<algorithm> #include<iostream> using namespace std; struct node{ int *elem; int length; }; node a; int f, 阅读全文
posted @ 2018-12-10 14:22 bluefly-hrbust 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> #include<algorithm> #include<iostream> using namespace std; struct node{ int *elem; int length; }; node a; int f, 阅读全文
posted @ 2018-12-10 14:22 bluefly-hrbust 阅读(117) 评论(0) 推荐(0) 编辑
摘要: B 题过的有些牵强,浪费了很多时间,这种题一定想好思路和边界条件再打,争取一发过。 D 题最开始读错题,后面最后发现可以重复感觉就没法做了,现在想来,数据量大,但是数据范围小枚举不行,二分还是可以的,还是自己的二分水平太差了,平时周一到周四做CF,周五周末复习CF,学习新的算法,并抽空进行专项训练 阅读全文
posted @ 2018-11-20 23:50 bluefly-hrbust 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 本场新生赛和今晚的小白月赛本次比赛还是暴力了自己很大的问题,代码量和思维量都明显不够,只会暴力和找规律,遇到稍微思维量大一点的代码题就没办法。优点是,比赛完后立马补题,效果最好。 A-签到 1 #include<iostream> 2 #include<stdio.h> 3 #include<str 阅读全文
posted @ 2018-11-17 23:36 bluefly-hrbust 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 比赛过程总结:过程中有事就玩手机了,后面打的状态不是很好,A题理解错题意,表明了内心不在状态,B题想法和思路都是完全正确的,但是并没有写出来,因为自己代码能力不强,思路不是特别清晰,把代码后面写乱了,而且出现了手误,这非常不应该。 反思:打下来应该想好,打代码的时候一气呵成,尽量避免调BUG,看错题 阅读全文
posted @ 2018-11-16 22:50 bluefly-hrbust 阅读(191) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页