インタビューを解読する際の 19.8 の問題は、次のとおりです。本の中の特定の単語の出現頻度を見つける方法を設計します。
本から提供された解決策を以下に示しますelse
が、createHashtable
関数に を入れています。
if の後に else ステートメントを入力すると 、間違った出力が得られる理由がわかりません (出力は次のとおりです1, 0, 0
) 。2, 1, 1
import java.util.Hashtable;
public class Question198
{
/*create a hashtable for the strings in the book*/
public static Hashtable<String, Integer> createHashtable(String[] book) {
Hashtable<String, Integer> table = new Hashtable<String, Integer>();
for(int i = 0; i < book.length; i++) {
book[i] = book[i].toLowerCase();
if(book[i].trim() != " ") {
if( !table.containsKey(book[i])) {
table.put(book[i], 0);
}
else{ // ?? why else is here is wrong??
table.put(book[i], table.get(book[i]) + 1);
}
}
}
return table;
}
/*get the frequency of the given word in the book*/
public static int getFrequency(Hashtable<String, Integer> table, String word) {
if( table == null || word == null) return -1;
word = word.toLowerCase();
if( table.containsKey(word)) {
return table.get(word);
}
return 0;
}
/*Test*/
public static void main(String[] args) {
String[] book1 = {"This", "is", "a", "is", "case",};
Hashtable<String, Integer> test1 = createHashtable(book1);
String word1 = "is";
String word2 = "a";
String word3 = "case";
System.out.println("Expected(2): " + getFrequency(test1, word1));
System.out.println("Expected(1): " + getFrequency(test1, word2));
System.out.println("Expected(1): " + getFrequency(test1, word3));
}
}