我在Java中创建了一个boggle求解器,解决一块板需要大约一分30秒,我确信它是因为我遍历字典的方式。我们的想法是检查它是否是一个单词,并查看它是否是一个有效的前缀。如果它是一个有效的前缀,它将返回true,以便程序继续运行。如果它返回false,则程序将停止运行它正在执行的过程。我读过关于trie结构但我不太了解如何实现它们。编写代码的示例将非常受欢迎
private ArrayList <String> dic = new ArrayList<String>(/*dictionary()*/);//my useable dictionary
private ArrayList <String> dicFinal = new ArrayList<String>();//all the words found
private ArrayList <String> checked = new ArrayList<String>();//all words that have already been checked go here
public boolean CheckTest (String word)throws IOException{//if its impossible to create a word with the combination of letters then it returns false,
String backw=reverse(word);
boolean isValid = true;
if (word.length()<=1){isValid = true;}
else if (checked.contains(word)&&checked.contains(backw)){}
else{
boolean isWord=true;
if(checked.contains(word)){}
else if(dic.contains(word)==true){
setCount(getCount()+1);
dicFinal.add(word);
dic.remove(word);
isWord=true;
}
else
isWord=false;
if(checked.contains(backw)==true){}
else if (dic.contains(backw)==true){
setCount(getCount()+1);
dicFinal.add(backw);
dic.remove(word);
}
if(isWord==false){
for(int i=0;i<dic.size();i++){
if(word.length()<=dic.get(i).length()&&dic.get(i).substring(0, word.length()).equalsIgnoreCase(word.substring(0, word.length()))){
isValid=true;
i=dic.size();
}
else
isValid=false;
}
}
}
checked.add(word);
checked.add(backw);
return isValid;
}
答案 0 :(得分:0)
我建议首先要做的是dic
和checked
HashSets而不是ArrayLists,它们会给你O(1)访问时间而不是O(N)。如果您认为这些查找是关键瓶颈是正确的,那么您的程序的性能应该会有很大提高。
如果这不足以改善问题,那么值得花几分钟时间学习如何分析Java程序,以便找出问题所在。