ArrayList
辞書の索引データに使用します
類似検索システムを作りたい
例えば
dictionary data : 'abcd' 'bcde' 'cdef' 'fghi' 'ijkl'
検索'cd'
したら取得したいindex '3'
私のソースで
for (String st : wordList) {
if (st.indexOf(searchWord) == 0) {
ListView.setSelection(index); //set listView scroll
break;
}
index++;
}
しかし、時間がかかりすぎました:(
このシステムを作る最良の方法は何ですか?