我正在使用这段代码在Android中解决4 * 4 boggle问题。它运作良好,但我试图在其中找到找到的单词的位置。
| A | C | E | X |
-----------------
| X | X | X | X |
-----------------
| X | X | X | X |
-----------------
| X | B | A | R |
让我们说我试图根据0指数找到ACE的位置。它是[0,1,2]。
或BAR,它的[13,14,15]
我怎样才能做到这一点?我尝试了一些实现,但它搞砸了,所以我没有发布代码。
public class Boggle {
private NavigableSet<String> dict___ = new TreeSet<>();
ArrayList<Word> foundWords = new ArrayList<>();
/* helpers */
int N = 4;
char[][] board = new char[N][N];
/* context obj*/
private final Context ctx;
public Boggle(Context ctx) {
this.ctx = ctx;
initFile();
}
public ArrayList<Word> startSolving(String str) {
initPuzzle(str);
Stack<Point> visitedLetters = new Stack<>();
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
findWordRecursive(i, j, new Word("", null), visitedLetters);
}
}
Log("foundWords = " + foundWords.size());
Log("=============================");
return foundWords;
}
private void findWordRecursive(int i, int j, Word prefix, Stack<Point> visitedLetters) {
Point currentLocation = new Point(i, j);
visitedLetters.push(currentLocation);
String possibleWord = prefix.getWord() + this.board[i][j];
if (dict___.contains(possibleWord)) {
if(!isFoundWordsContains(possibleWord)) {
foundWords.add(
new Word(
possibleWord,
null)
);
}
}
NavigableSet<String> child__ = findChildWords(possibleWord);
if (!child__.isEmpty()) {
for (int x = Math.max(0, i - 1); x < Math.min(i + 2, 4); x++) {
for (int y = Math.max(0, j - 1); y < Math.min(j + 2, 4); y++) {
if (!visitedLetters.contains(new Point(x,y))) {
findWordRecursive(x, y, new Word(possibleWord, null), visitedLetters);
}
}
}
}
visitedLetters.pop();
}
private void initFile() {
Log("=============================");
Log("init starting");
//fill dict___ array with words from a TXT file.
Log("init finished")
}
void initPuzzle(String letters) {
letters = letters.toLowerCase(new Locale("tr", "TR"));
int in = 0;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
board[i][j] = letters.charAt(in);
in++;
}
}
Log("board letters inited");
}
void Log(String e){
Log.wtf("___Boggle___", e);
}
NavigableSet<String> findChildWords(String prefix){
prefix = prefix.toLowerCase(new Locale("tr", "TR"));
return dict___.subSet(prefix, false, prefix+"zzzzzzzzzzzzzzz", false);
}
boolean isFoundWordsContains(String word) {
boolean yeah = false;
for (int i = 0; i < foundWords.size(); i++) {
if(word.equals(foundWords.get(i).getWord())) {
yeah = true;
break;
}
}
return yeah;
}
}
词类:
public class Word {
private String word;
private ArrayList<Integer> position;
public Word(String word, ArrayList<Integer> position) {
this.word = word;
this.position = position;
}
public String getWord() {
return word;
}
}
答案 0 :(得分:2)
我认为您的问题归因于prefix = prefix.toLowerCase(new Locale("tr", "TR"));
因此,为了使您的代码有效,您可能需要检查以下步骤:
String
中的所有dict___
都必须为lowerCase。dict___
必须包含单词subset(对于“ace”,必须至少包含“a”,“ac”,“ace”)在findWordRecursive
中用{替换String possibleWord = prefix.getWord() + this.board[i][j];
String possibleWord = prefix.getWord() + this.board[i][j];
possibleWord = possibleWord.toLowerCase();
的更新强>
要找到位置,你可以试试这个:
在startSolving
中,使用findWordRecursive(i, j, new Word("", new ArrayList<Integer>()), visitedLetters);
在findWordRecursive
中,添加pass currentPosition
int curPos = i * N + j;
if (dict___.contains(possibleWord)) {
if(!isFoundWordsContains(possibleWord)) {
// add current position to the word
ArrayList<Integer> posList = new ArrayList<Integer>();
posList.addAll(prefix.position);
posList.add(curPos);
foundWords.add(
new Word(
possibleWord,
posList)
);
}
}
NavigableSet<String> child__ = findChildWords(possibleWord);
if (!child__.isEmpty()) {
for (int x = Math.max(0, i - 1); x < Math.min(i + 2, 4); x++) {
for (int y = Math.max(0, j - 1); y < Math.min(j + 2, 4); y++) {
if (!visitedLetters.contains(new Point(x,y))) {
// add current before find new word
ArrayList<Integer> posList = new ArrayList<Integer>(prefix.position);
posList.addAll(prefix.position);
posList.add(curPos);
findWordRecursive(x, y, new Word(possibleWord, posList), visitedLetters);
}
}
}
}