-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordAnalyserService.java
More file actions
327 lines (133 loc) · 3.92 KB
/
wordAnalyserService.java
File metadata and controls
327 lines (133 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package com.tasks.problem;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import java.util.stream.Collectors;
public class WordAnalyzerService {
private static final String FILE_PATH = "words.txt";
String fileData;
String[] words;
Set<String> set = new HashSet<String>();
Map<String, Long> map = new HashMap<String, Long>();
/**
*
* @return number of words present in the file words.txt
* @throws Exception
*/
public long readFileAndReturnNoOfWords() throws IOException {
StringBuilder sb =new StringBuilder();
try(BufferedReader br=new BufferedReader(new FileReader(FILE_PATH)))
{
String line;
while((line=br.readLine())!=null){
sb.append(line).append(" ");
}
}
fileData=sb.toString().trim();
words=fileData.split("\\W+");
//@todo Use BufferedReader to read the file and store the words into words variable
// delete the last new line separator
return words.length;
}
/*
*
* @return the unique words present in the file. These words should be populated in the set variable declared above.
*/
public long createSetOfUniqueWordsAndReturnUniqueCount() throws IOException {
if(words == null) {
readFileAndReturnNoOfWords();
}
//@todo Add words to the collection uniquely
for(String word:words){
if(!word.isEmpty()){
set.add(word);
}
}
return set.size();
}
/**
* Populate the map variable with key-value mapping of word-count, count representing how many times the word appeared in the file.
*/
public void createMapOfWord_Count() throws IOException{
if(words == null) {
readFileAndReturnNoOfWords();
}
//@todo Populate the map variable by writing appropriate code
for(String word:words){
String key=word.toLowerCase();
map.compute(key,(k,v)->(v==null)?1L:v+1);
}
}
/**
*
* @param word - input word
* @return the number of times the input word appeared in the file
*/
public long getOccurrencesOf(String word) throws IOException{
if(map.keySet().size() == 0) {
createMapOfWord_Count();
}
//@todo Get the count
return map.getOrDefault(word.toLowerCase(),0L);
}
/**
*
* @return topp 3 words sorted (desc) by number of occurrences in the file
*/
public List<String> findThreeMostCommonWords() throws IOException{
if(map.isEmpty()){
createMapOfWord_Count();
}
List<String> top3Lower= map.entrySet().stream()
.sorted(Map.Entry.<String,Long>comparingByValue().reversed())
.limit(3)
.map(Map.Entry::getKey)
.collect(Collectors.toList());
List<String> result=new ArrayList<>();
for(String key: top3Lower){
for(String original:words){
if(original.equalsIgnoreCase(key)){
result.add(original);
break;
}
}
}
return result;
}
/**
* Sort the map keys based on key value with most commonly used word at the top.
* @param hm
* @return
*/
private static Map<String, Long>
sortByValue(Map<String, Long> hm)
{
//@todo Sort the map on the basis of value of the key in the Map.
// Creating a list from elements of HashMap
List<Entry<String,Long>>list=new ArrayList<>(hm.entrySet());
// Sorting the list using Collections.sort() method
Collections.sort(list,new Comparator<Map.Entry<String,Long>>(){
public int compare(Map.Entry<String,Long>o1,Map.Entry<String,Long>o2){
return (o2.getValue()).compareTo(o1.getValue());
}
});
// using Comparator
// putting the data from sorted list back to hashmap
Map<String,Long>temp=new LinkedHashMap<>();
for(Map.Entry<String,Long>aa:list){
temp.put(aa.getKey(),aa.getValue());
}
// returning the sorted HashMap
return temp;
}
}