需要一些管理字符串的帮助

时间:2012-04-28 09:44:35

标签: java string hashtable

不要担心哈希表人员,但只是让我知道如何管理字符串。

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

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

可能的更正:

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

---如何一次更改一个字符,从a到z也是如此。

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

---如何更改相邻的字母,需要交换什么?..

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

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

请记住输入的单词可能有任何长度。

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

     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

1 个答案:

答案 0 :(得分:2)

对于您要完成的任务,没有简单的解决方案。你可以用来进行拼写检查的一个好的数学概念称为Edit Distance,你在尝试编写一些代码之前一定要阅读一些理论。