POJ 1035

来源:互联网 发布:mysql fetch 编辑:程序博客网 时间:2024/05/01 20:56

Spell checker
Time Limit: 2000MS Memory Limit: 65536KTotal Submissions: 12851 Accepted: 4732

Description

You, as a member of a development team for a new spell checking program, are to write a module that will check the correctness of given words using a known dictionary of all correct words in all their forms. 
If the word is absent in the dictionary then it can be replaced by correct words (from the dictionary) that can be obtained by one of the following operations: 
?deleting of one letter from the word; 
?replacing of one letter in the word with an arbitrary letter; 
?inserting of one arbitrary letter into the word. 
Your task is to write the program that will find all possible replacements from the dictionary for every given word. 

Input

The first part of the input file contains all words from the dictionary. Each word occupies its own line. This part is finished by the single character '#' on a separate line. All words are different. There will be at most 10000 words in the dictionary. 
The next part of the file contains all words that are to be checked. Each word occupies its own line. This part is also finished by the single character '#' on a separate line. There will be at most 50 words that are to be checked. 
All words in the input file (words from the dictionary and words to be checked) consist only of small alphabetic characters and each one contains 15 characters at most. 

Output

Write to the output file exactly one line for every checked word in the order of their appearance in the second part of the input file. If the word is correct (i.e. it exists in the dictionary) write the message: " is correct". If the word is not correct then write this word first, then write the character ':' (colon), and after a single space write all its possible replacements, separated by spaces. The replacements should be written in the order of their appearance in the dictionary (in the first part of the input file). If there are no replacements for this word then the line feed should immediately follow the colon.

第一次发。。。最近想学高级数据结构。。。那就先从低级入手吧

这道题没啥说的。。。唯一要注意的就是相似单词的判断

#include<stdio.h>#include<stdlib.h>#include<string.h>#define max(a,b) (a > b?a:b)#define len 20#define maxn 11000char s[len],st[maxn][len];int n1;int abs(int k){    if (k < 0) return -k;      else return k;}int judge(char s1[],char s2[]){    int l1 = strlen(s1),l2 = strlen(s2),i,j,ans = 0;    if (abs(l1 - l2) > 1) return 0;    if (l1 == l2) {      for(i = 0;i <= l1;i++)        ans += (s1[i] != s2[i]);      if (ans <= 1) return 1;      }    for(i = 0,j = 0;(i < l1) && (j < l2);j++)      if (s1[i] != s2[j]) ans++;        else i++;    if (ans <= 1) return 1;      else return 0;}void work(){    int i,j,t;    for(i = 0;i < n1;i++)      if (strcmp(s,st[i]) == 0) {        printf("%s is correct\n",st[i]);        return ;        }    printf("%s:",s);    for(i = 0;i < n1;i++) {      if (strlen(s) > strlen(st[i])) t = judge(st[i],s);        else t = judge(s,st[i]);      if (t) printf(" %s",st[i]);      }    printf("\n");    return ;}int main(){    int i;    while (scanf("%s",s),s[0] != '#')      strcpy(st[n1++],s);    while (scanf("%s",s),s[0] != '#') work();    return 0;}


原创粉丝点击