day4 POJ 1035 Spell checker

模拟题,没什么可说的,可以先读入字典,再将单词逐个读入输出,可以保证顺序,同时注意对字符数组的操作要细心


#include"iostream"
#include"string.h"
#include"cmath"
using namespace std;
char d[10001][16];
char w[16];

int ld=0,lw=0;
int dlen[10001];
char ed[5]="#";
void work(char* str,int l,int k)
{
    //cout<>d[ld])
    {
        if(strcmp(d[ld],ed)==0) break;
        ld++;
    }
    for(int i=0;i>w)
    {
        int flag=0;
        if(strcmp(w,ed)==0) break;
        lw=strlen(w);
        //cout<




你可能感兴趣的:(解题报告)