wordcounter15.java

来自「Thinking In Java 第四版练习题答案」· Java 代码 · 共 26 行

JAVA
26
字号
// containers/WordCounter15.java
// TIJ4 Chapter Containers, Exercise 15, page 847
// Repeat Exercise 13 using a SlowMap. 
import net.mindview.util.*;	
import static net.mindview.util.Print.*;
import java.util.*;

public class WordCounter15 {
	public static void main(String[] args) {
		// File whose words are to be counted:
		String fileName = "WordCounter15.java";
		// List of all words in file:
		ArrayList<String> wordList = new TextFile(fileName, "\\W+");
		SlowMap<String,Integer> wordCount = new SlowMap<String,Integer>();
		Iterator it = wordList.iterator();
		while(it.hasNext()) {
			String s = (String)it.next();
			if(!(wordCount.containsKey(s))) wordCount.put(s,1);
			else {
				int count = wordCount.get(s);
				wordCount.put(s, ++count);
			}
		}
		print(wordCount);		
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?