中等的模拟题,各种暴力枚举可以用来锻炼代码能力View Code #include<cstdio>#include<cstring>#include<algorithm>using namespace std;struct DD{ char s[25];}dic[120];int cmp(DD a,DD b){ return strcmp(a.s,b.s)<0;}char query[100];char ss[100][100];bool judge(char *query,char *dic){ char unsign[100]; char pos[ Read More
posted @ 2012-02-12 16:43 Because Of You Views(289) Comments(0) Diggs(0)