forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapReduce.java
More file actions
40 lines (34 loc) · 1.52 KB
/
MapReduce.java
File metadata and controls
40 lines (34 loc) · 1.52 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
package com.thealgorithms.misc;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
/**
* MapReduce is a programming model for processing and generating large data sets
* using a parallel, distributed algorithm on a cluster.
* It consists of two main phases:
* - Map: the input data is split into smaller chunks and processed in parallel.
* - Reduce: the results from the Map phase are aggregated to produce the final output.
*
* See also: https://en.wikipedia.org/wiki/MapReduce
*/
public final class MapReduce {
private MapReduce() {
}
/**
* Counts the frequency of each word in a given sentence using a simple MapReduce-style approach.
*
* @param sentence the input sentence
* @return a string representing word frequencies in the format "word: count,word: count,..."
*/
public static String countWordFrequencies(String sentence) {
// Map phase: split the sentence into words
List<String> words = Arrays.asList(sentence.trim().split("\\s+"));
// Group and count occurrences of each word, maintain insertion order
Map<String, Long> wordCounts = words.stream().collect(Collectors.groupingBy(Function.identity(), LinkedHashMap::new, Collectors.counting()));
// Reduce phase: format the result
return wordCounts.entrySet().stream().map(entry -> entry.getKey() + ": " + entry.getValue()).collect(Collectors.joining(","));
}
}