0

不要担心哈希表的人,只要给我一些如何管理字符串的想法。

我需要使用哈希表对用户在字典中输入的单词进行拼写检查。我从哈希表中得到了一个名为 checkDictionary() 的方法来检查给定的单词是否存在于字典中。如果单词存在则返回布尔值,否则返回 false。

我想要做的是,我只想在拼写错误的时候检查字典中的单词,做一些可能的更正。

可能的更正:

更改一个字母:例如,如果拼错的单词是“kest”,我想尝试一次更改一个字符的所有可能性,并在字典中查找修改后的单词。可能性将是“aest”、“best”、...、“zest”、“kast”、...、“kzst”等。

---我怎样才能一次改变一个字符,也可以从a到z。

交换相邻的字母:例如,如果拼写错误的单词是“ebst”,请尝试“best”、esbt 和“ebts”。

---我怎样才能改变相邻的字母,需要交换什么的?...

删除一个字母:例如,如果拼写错误的单词是“tbird”,尝试一次删除一个字母的所有可能性,并在字典中查找修改后的单词,即:“bird”、“tird”、“tbrd” ”和“tbir”。

---我怎样才能每次都删除每个字母?

请记住,输入的单词可以是任意长度。

检查字典中的单词后,我需要将此建议返回给用户。字符串中是否有任何方法可以用来实现这些功能。请帮助实施上述更改、交换和删除方法。

     import java.util.*;
     import java .io.*;

     public class HashTableDemo
   {
     public static void main(String [] args)
  {

   // constructs a new empty hashtable with default initial capacity
     HashTable hashtable = new HashTable();
     Scanner keyboard = null;
     Scanner input=null;
     try
     {
        System.out.println("Enter a word to check in dictionary");
        keyboard = new Scanner(System.in);
        String word = (keyboard.nextLine().toUpperCase());

     //Adding aal dictionary words from a text file to hash table.
        input=new Scanner(new FileInputStream("TWL.txt"));
            int i=1;

            // adding value into hashtable
            while(input.hasNextLine())
             {
             String hello = input.nextLine();
                            hashtable.put( hello, new Integer(i) ); 
             i++;
             }
      );


        if(hashtable.checkDictionary(word))
           System.out.println("The word "+word+" is there in the dictionary.");
        else
           System.out.println("The word "+word+" is not there in the dictionary.");
     }//try



     //Here I need to implement the required methods if the word is not in dictionary and misspelled.





         catch(FileNotFoundException e)
        {
           System.out.println("Cannot open file");
           System.exit(0);
        }//end catch
4

1 回答 1

2

对于您要完成的工作,没有简单的解决方案。可以用于拼写检查的一个很好的数学概念称为Edit Distance,在尝试编写一些代码之前,您绝对应该阅读一些理论。

于 2012-04-28T09:57:16.283 回答