Spell checker

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Submit Status

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.

Sample Input

i
is
has
have
be
my
more
contest
me
too
if
award
#
me
aware
m
contest
hav
oo
or
i
fi
mre
#

Sample Output

me is correct
aware: award
m: i my me
contest is correct
hav: has have
oo: too
or:
i is correct
fi: i
mre: more me 题目大意:输入字典中的单词,以#结束,再输入要查找的单词,也以#结束
若在字典中找到了,则输出:x is correct;
若在字典中找到单词满足或者更改一个字母,或者删除一个字母,或者增加一个字母之后成为要查找的单词,就按照字典序输出;
若是以上两种都没有找到,则不输出;
代码:
 #include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
using namespace std;
char dic[][],word[][];
int dicnum=,wordnum=;
void add()
{
while(scanf("%s",dic[dicnum])&&dic[dicnum][]!='#')
dicnum++;
while(scanf("%s",word[wordnum])&&word[wordnum][]!='#')
wordnum++;
dicnum--;
wordnum--;
//cout<<wordnum<<endl<<dicnum;
}
int change(char f[],char g[])//f是字典中的单词,g是查找的单词
{
int i=;
int t=;
for(i=;f[i]!='\0';i++)
{
if(f[i]!=g[i])
{
t++;
if(t==)return ;
}
}
return ;
}
int zeng(char f[],char g[])//g大
{
int s=,t=,zong=;
while(g[t]!='\0')
{
if(f[s]!=g[t])
{
zong++;
t++;
if(zong==)return ;
}
else
{
s++;
t++;
}
}
return ;
}
int shan(char f[],char g[])//f大
{
int s=,t=,zong=;
while(f[s]!='\0')
{
if(f[s]!=g[t])
{
zong++;
s++;
if(zong==)return ;
}
else
{
s++;
t++;
}
}
return ;
}
int main()
{
add();
int diclen[]={};
int i,j;
for(i=;i<=dicnum;i++)
diclen[i]=strlen(dic[i]);
for(i=;i<=wordnum;i++)
{
int f[],t=,flag=,s=,zong=;
int len=strlen(word[i]);
for( j=;j<=dicnum;j++)
{
if(strcmp(dic[j],word[i])==)
{
flag=;
break;
}
else if(diclen[j]==len)
{
s=change(dic[j],word[i]);
if(s==)
{
f[t++]=j;
zong++;
}
}
else if(diclen[j]-len==-)
{
s=zeng(dic[j],word[i]);
if(s==)f[t++]=j;
}
else if(diclen[j]-len==)
{
s=shan(dic[j],word[i]);
if(s==)
{
f[t++]=j;
zong++;
}
}
}
if(flag==)
{
cout<<word[i]<<' '<<"is"<<' '<<"correct"<<endl;
continue;
}
else
{
//if(zong==0)continue;
cout<<word[i]<<": ";
int st=;
for(j=;j<=t-;j++)
{
if(st==)
{
cout<<dic[f[j]];
st=;
}
else
cout<<" "<<dic[f[j]];
}
cout<<endl;
}
}
return ;
}

Spell checker的更多相关文章

  1. poj 1035 Spell checker

    Spell checker Time Limit: 2000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d , %I64u   J ...

  2. Spell checker(暴力)

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 20188   Accepted: 7404 De ...

  3. POJ1035——Spell checker(字符串处理)

    Spell checker DescriptionYou, as a member of a development team for a new spell checking program, ar ...

  4. poj 1035 Spell checker ( 字符串处理 )

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 16675   Accepted: 6087 De ...

  5. [ACM] POJ 1035 Spell checker (单词查找,删除替换添加不论什么一个字母)

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 18693   Accepted: 6844 De ...

  6. Spell checker POJ 1035 字符串

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 25426   Accepted: 9300 De ...

  7. POJ 1035:Spell checker

    Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 22574   Accepted: 8231 De ...

  8. Code Spell Checker & VSCode 单词拼写验证

    Code Spell Checker & VSCode 单词拼写验证 https://marketplace.visualstudio.com/items?itemName=streetsid ...

  9. VSCode中插件Code Spell Checker

    说在前面 介绍 Code Spell Checker 是在VSCode中的一款插件,能够帮助我们检查单词拼写是否出现错误,检查的规则遵循 camelCase (驼峰拼写法). 安装方法 打开VSCod ...

随机推荐

  1. (原)android中的动画(三)之动画监听&页面切换动画

    1.动画也可以设置监听事件,例如在动画结束时需要执行某操作 把要执行的代码写在onAnimationEnd()回调方法中即可: anim.setAnimationListener(new Animat ...

  2. 2016年11月10日--CSS动画

    jquery动画:http://www.w3school.com.cn/jquery/jquery_animate.aspCSS3动画教程1:http://www.w3school.com.cn/cs ...

  3. 2016年11月6日--form表单验证和事件、正则表达式

    1.表单验证<form></form> (1).非空验证(去空格) (2).对比验证(跟一个值对比) (3).范围验证(根据一个范围进行判断) (4).固定格式验证:电话号码, ...

  4. Linux下端口被占用解决

      有时候关闭软件后,后台进程死掉,导致端口被占用.下面以JBoss端口8083被占用为例,列出详细解决过程. 解决方法: 1.查找被占用的端口 netstat -tln netstat -tln | ...

  5. python gui之tkinter界面设计pythonic设计

    ui的设计,控件id的记录是一件比较繁琐的事情. 此外,赋值和读取数据也比较繁琐,非常不pythonic. 有没有神马办法优雅一点呢?life is short. 鉴于控件有name属性,通过dir( ...

  6. 《oracle每日一练》oralce数据库的导入导出

    今天尝试了数据库的导出,直接在命令行里面使用了导出指令: exp uname/pwd@127.0.0.1:1521/orcl  file='xx.dmp' 出现的问题: 直接@tnsnames里面配的 ...

  7. 如何在maven中添加本地jar包

    mvn install:install-file -DgroupId=mytest-DartifactId=test-Dversion=1.1 -Dpackaging=jar -Dfile=d:\te ...

  8. Bootstrap datepicker可配置网址

    http://eternicode.github.io/bootstrap-datepicker/?markup=input&format=&weekStart=&startD ...

  9. 【转载】通过JDBC对MySQL数据库的增删改查

    通过JDBC进行简单的增删改查(以MySQL为例) 目录 前言:什么是JDBC 一.准备工作(一):MySQL安装配置和基础学习 二.准备工作(二):下载数据库对应的jar包并导入 三.JDBC基本操 ...

  10. ios delegate 使用注意 assign,weak

    今天一个同事写代码,把一个delegate对象设定成了assign类型属性,没有用weak,就是delegate对象释放后,不会把delegate指针自动设定为nil,把对象的delegate设定成了 ...