摘要:
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) ... 阅读全文
摘要:
#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; ... 阅读全文
摘要:
//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; ... 阅读全文
摘要:
#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]=(... 阅读全文
摘要:
//1052 有些节点并不属于链表,因此单纯排序,会有一个case过不去#include #include #include #include #include #include #include #include #define MAX_SIZE 100010using namespace std;typedef struct Node{ int _address; int key... 阅读全文
摘要:
//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... 阅读全文
摘要:
//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 '... 阅读全文
摘要:
//题目考察结构体排序,刚开始有一个case超时, (1)将输入改为scanf (2)修改将string 改为char,C++的string是相对char字符串更加耗时 (3)然后对于ID比较,先前是用字符串比较函数strcmp比较耗时,修改为整型比较,就很快,最后补齐0即可 //1028#include #include #include #include #include #include #... 阅读全文
摘要:
#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... 阅读全文
摘要:
#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 ... 阅读全文