質問編集履歴
2
削除しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -27,363 +27,3 @@
|
|
27
27
|
"%-"と"s= %3d"が理解できておりません。
|
28
28
|
|
29
29
|
自分の考えとして、C言語の際に%s(文字列),%d整数みたいな表現のなごりだと考えておりますが、C言語の際に必要であった("%s",引数名)がなく混乱しております。
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
### 発生している問題・エラーメッセージ
|
36
|
-
|
37
|
-
このように出現回数の多い順に並び変えられてしまいます。
|
38
|
-
|
39
|
-
```
|
40
|
-
|
41
|
-
is = 14
|
42
|
-
|
43
|
-
you = 8
|
44
|
-
|
45
|
-
(省略)
|
46
|
-
|
47
|
-
only = 2
|
48
|
-
|
49
|
-
(省略)
|
50
|
-
|
51
|
-
```
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
### 該当のソースコード
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
```java
|
60
|
-
|
61
|
-
//java.io.InputStream 抽象クラス_バイトを読み込むためのクラス
|
62
|
-
|
63
|
-
import java.io.*;
|
64
|
-
|
65
|
-
import java.util.*;
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
/**
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
[出力イメージ]
|
74
|
-
|
75
|
-
(省略)
|
76
|
-
|
77
|
-
highest=1
|
78
|
-
|
79
|
-
I=3
|
80
|
-
|
81
|
-
if=2
|
82
|
-
|
83
|
-
ignorance=1
|
84
|
-
|
85
|
-
(省略)
|
86
|
-
|
87
|
-
*/
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
public class Q {
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
// 「1つ以上のスペース、ピリオド、コンマ、セミコロンのどれか」という意味
|
96
|
-
|
97
|
-
// |は区切ったもののどれかという意味で、.は単にピリオドです(文字列表記する都合上、バックスラッシュが2つ必要)
|
98
|
-
|
99
|
-
private static final String SEPARATOR = "(\s+?|\.|,|;)";
|
100
|
-
|
101
|
-
/**
|
102
|
-
|
103
|
-
* データファイルを開く
|
104
|
-
|
105
|
-
* resources/q003/data.txt
|
106
|
-
|
107
|
-
*/
|
108
|
-
|
109
|
-
private static InputStream openDataFile() {
|
110
|
-
|
111
|
-
//getResourceAsStreamメソッドを利用すると、リソースファイル(設定ファイルなどのこと)を簡単に読み込むことができる
|
112
|
-
|
113
|
-
return Q003.class.getResourceAsStream("data.txt");
|
114
|
-
|
115
|
-
}
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
public static void main(String[] args){
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
// 集計
|
128
|
-
|
129
|
-
//カウントには以下のMap<String, Integer>を使用
|
130
|
-
|
131
|
-
Map<String, Integer> map = new HashMap<>();
|
132
|
-
|
133
|
-
try (
|
134
|
-
|
135
|
-
/*
|
136
|
-
|
137
|
-
ファイルの読み込み main配下にあるresourcesからファイルを取得している
|
138
|
-
|
139
|
-
FileReaderを使ってファイルを読み込む場合には、1文字読み込んでは1文字処理して、と言うのを繰り返すため、非常に効率が悪い
|
140
|
-
|
141
|
-
*/
|
142
|
-
|
143
|
-
FileReader fr = new FileReader(Q003.class.getResource("data.txt").getFile());
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
/*
|
148
|
-
|
149
|
-
ファイルの読み込み
|
150
|
-
|
151
|
-
なぜ最初からこのクラスを使わないかというと、このクラスはFileReaderクラスを拡張する形で利用するため。
|
152
|
-
|
153
|
-
FileReaderクラスの持つ基本機能でファイルから読み込みは行うが、
|
154
|
-
|
155
|
-
それにBufferedReaderクラスをかぶせて使うことでまとめて読み込む機能を持てるようになる
|
156
|
-
|
157
|
-
*/
|
158
|
-
|
159
|
-
BufferedReader br = new BufferedReader(fr)){
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
/*
|
164
|
-
|
165
|
-
テキストを1行単位で読む
|
166
|
-
|
167
|
-
1行まとめて読むための"readLine"メソッドが用意されている。
|
168
|
-
|
169
|
-
注意する点は、改行文字は読み込んだ文字に含まれない事
|
170
|
-
|
171
|
-
よって1行ごとに、改行を含まないテキストを読み込んでString型の値として返す
|
172
|
-
|
173
|
-
*/
|
174
|
-
|
175
|
-
String line;
|
176
|
-
|
177
|
-
while ((line = br.readLine()) != null) {
|
178
|
-
|
179
|
-
//splitメソッドでword[]に分割して格納していく。
|
180
|
-
|
181
|
-
String[] words = line.split(SEPARATOR);
|
182
|
-
|
183
|
-
//繰り返し処理
|
184
|
-
|
185
|
-
for (String word : words) {
|
186
|
-
|
187
|
-
//もしwordがからでないなら… 文字列が空かどうかを判定する – isEmptyメソッド
|
188
|
-
|
189
|
-
//分解後に空白1文字が残る場合に備え、単語の出現数のカウントではisEmpty()メソッドを使用
|
190
|
-
|
191
|
-
if (!word.isEmpty()) {
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
/*
|
198
|
-
|
199
|
-
containsKeyメソッドは、指定したキーが存在するか確認を行い、キーが存在する場合は「true」を返します
|
200
|
-
|
201
|
-
Map.containsKey(検索するキー)
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
キー→単語
|
206
|
-
|
207
|
-
値 →出現数
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
単語wordが与えられたときの処理は以下の考え方。
|
212
|
-
|
213
|
-
単語がMapのキーに含まれている場合、出現数を加算する。
|
214
|
-
|
215
|
-
単語がMapのキーに含まれていない場合、以下をMapに格納する。 //なぜ??
|
216
|
-
|
217
|
-
キー word
|
218
|
-
|
219
|
-
値 1
|
220
|
-
|
221
|
-
*/
|
222
|
-
|
223
|
-
if (map.containsKey(word)) {
|
224
|
-
|
225
|
-
/*
|
226
|
-
|
227
|
-
要素を取り出すためにgetメソッドを使用する。 get(Object key)
|
228
|
-
|
229
|
-
要素を格納するためにputメソッドを使用する。 put(K key, V value)
|
230
|
-
|
231
|
-
*/
|
232
|
-
|
233
|
-
int count = map.get(word) + 1;
|
234
|
-
|
235
|
-
map.put(word, count);
|
236
|
-
|
237
|
-
} else {
|
238
|
-
|
239
|
-
map.put(word, 1);
|
240
|
-
|
241
|
-
}
|
242
|
-
|
243
|
-
}
|
244
|
-
|
245
|
-
}
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
}
|
250
|
-
|
251
|
-
} catch (FileNotFoundException e) {
|
252
|
-
|
253
|
-
System.out.println("ファイルが見つかりませんでした。");
|
254
|
-
|
255
|
-
} catch (IOException e) {
|
256
|
-
|
257
|
-
System.out.println("読み取りに失敗しました。");
|
258
|
-
|
259
|
-
}
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
// 出現数で降順に並べ替え、つづりの長さ最大値取得 →
|
266
|
-
|
267
|
-
/*
|
268
|
-
|
269
|
-
アルファベット辞書順に並び変えて出力
|
270
|
-
|
271
|
-
条件
|
272
|
-
|
273
|
-
* - "I"以外は全て小文字で扱う("My"と"my"は同じく"my"として扱う)
|
274
|
-
|
275
|
-
* - 単数形と複数形のように少しでも文字列が異れば別単語として扱う("dream"と"dreams"は別単語)
|
276
|
-
|
277
|
-
* - アポストロフィーやハイフン付の単語は1単語として扱う("isn't"や"dead-end")
|
278
|
-
|
279
|
-
*/
|
280
|
-
|
281
|
-
List<String> list = new ArrayList<>();
|
282
|
-
|
283
|
-
int maxLengthOfSpelling = 0;
|
284
|
-
|
285
|
-
for (String key : map.keySet()) {
|
286
|
-
|
287
|
-
list.add(key);
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
if (maxLengthOfSpelling < key.length()) {
|
292
|
-
|
293
|
-
maxLengthOfSpelling = key.length();
|
294
|
-
|
295
|
-
}
|
296
|
-
|
297
|
-
}
|
298
|
-
|
299
|
-
Collections.sort(list, (o1, o2) -> {
|
300
|
-
|
301
|
-
return - map.get(o1) + map.get(o2);
|
302
|
-
|
303
|
-
});
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
// 全部の値を出力
|
310
|
-
|
311
|
-
String format = "%-" + maxLengthOfSpelling + "s= %3d"; //わかっていない
|
312
|
-
|
313
|
-
for (String word : list) {
|
314
|
-
|
315
|
-
int count = map.get(word);
|
316
|
-
|
317
|
-
//出力の回数を制限するなら、ここで if (出現させたい件数 <= count)で可能
|
318
|
-
|
319
|
-
System.out.printf(format, word, count);
|
320
|
-
|
321
|
-
System.out.println();
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
}
|
326
|
-
|
327
|
-
}
|
328
|
-
|
329
|
-
}
|
330
|
-
|
331
|
-
```
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
```
|
336
|
-
|
337
|
-
//data.txt ←データ名
|
338
|
-
|
339
|
-
I walk slowly, but I never walk backward.
|
340
|
-
|
341
|
-
There is more to life than increasing its speed.
|
342
|
-
|
343
|
-
Without haste, but without rest.
|
344
|
-
|
345
|
-
There is always light behind the clouds.
|
346
|
-
|
347
|
-
If you can dream it, you can do it.
|
348
|
-
|
349
|
-
All your dreams can come true if you have the courage to pursue them.
|
350
|
-
|
351
|
-
Kites rise highest against the wind – not with it.
|
352
|
-
|
353
|
-
Growth is often a painful process.
|
354
|
-
|
355
|
-
Our greatest glory is not in never failing, but in rising up every time we fail.
|
356
|
-
|
357
|
-
Failure is a detour, not a dead-end street.
|
358
|
-
|
359
|
-
Although the world is full of suffering, it is full of the overcoming of it.
|
360
|
-
|
361
|
-
My life didn’t please me, so I created my life.
|
362
|
-
|
363
|
-
Life isn’t about finding yourself. Life is about creating yourself.
|
364
|
-
|
365
|
-
Do one thing everyday that scares you.
|
366
|
-
|
367
|
-
The future starts today, not tomorrow.
|
368
|
-
|
369
|
-
Conquer yourself rather than the world.
|
370
|
-
|
371
|
-
Life is like riding a bicycle. To keep your balance you must keep moving.
|
372
|
-
|
373
|
-
Happiness depends upon ourselves.
|
374
|
-
|
375
|
-
Fear always springs from ignorance.
|
376
|
-
|
377
|
-
The most important thing in communication is hearing what isn't said.
|
378
|
-
|
379
|
-
Experience is not what happens to you. It is what you do with what happens to you.
|
380
|
-
|
381
|
-
Peace begins with a smile.
|
382
|
-
|
383
|
-
Love is doing small things with great love.
|
384
|
-
|
385
|
-
My true religion is kindness.
|
386
|
-
|
387
|
-
Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that.
|
388
|
-
|
389
|
-
```
|
1
ソースの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -186,6 +186,8 @@
|
|
186
186
|
|
187
187
|
//もしwordがからでないなら… 文字列が空かどうかを判定する – isEmptyメソッド
|
188
188
|
|
189
|
+
//分解後に空白1文字が残る場合に備え、単語の出現数のカウントではisEmpty()メソッドを使用
|
190
|
+
|
189
191
|
if (!word.isEmpty()) {
|
190
192
|
|
191
193
|
|