考前复习记录
Posted gc812
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了考前复习记录相关的知识,希望对你有一定的参考价值。
字符串读入直接读字符数组
char s[1004];
scanf("%s",s);
但是要用strlen(s)来算长度 复杂度O(n)
e.g.a串是不是b的子串
//从a第0位开始枚举
//如果a的第0位=b的第i位
//就从b的第i位开始枚举检查
#include<cstdio> #include<iostream> #include<cmath> #include<cstring> #include<queue> #include<vector> #define maxn 1000005 using namespace std; char a[maxn],b[maxn]; int main() { scanf("%s%s",a,b); int na=strlen(a),nb=strlen(b); for(int i=0;i<nb;i++) { if(b[i]==a[0]) { bool te=0; for(int j=0;j<na;j++) { if(i+j-1<nb) { if(b[i+j]!=a[j]){te=1;break;} } } if(te==0)printf("%d\\n",i); } } return 0; }
背包问题
http://www.cnblogs.com/gc812/p/5791276.html
spfa
http://www.cnblogs.com/gc812/p/5808132.html
拓扑排序
http://www.cnblogs.com/gc812/p/7786571.html
奇怪的东西
http://www.cnblogs.com/gc812/p/7811239.html
奇怪的练习
http://www.cnblogs.com/gc812/p/6034907.html
以上是关于考前复习记录的主要内容,如果未能解决你的问题,请参考以下文章