-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMissingCards.java
More file actions
72 lines (63 loc) · 2.32 KB
/
Copy pathMissingCards.java
File metadata and controls
72 lines (63 loc) · 2.32 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
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import java.io.IOException;
import java.util.ArrayList;
public class MissingCards
{
public static class Map extends Mapper<LongWritable, Text, Text, IntWritable>
{
public void map(LongWritable lw, Text t, Context c) throws IOException, InterruptedException
{
String s = t.toString();
String[] split = s.split(",");
Text text = new Text(split[0]);
IntWritable in = new IntWritable(Integer.parseInt(split[1]));
c.write(text,in);
}
}
public static class Reduce extends Reducer<Text, IntWritable, Text, IntWritable>
{
public void reduce(Text t, Iterable<IntWritable> iw, Context c)throws IOException, InterruptedException
{
int i = 1,cardPresent = 0;
ArrayList<Integer> suite = new ArrayList<Integer>();
for(i=1;i<=13;++i)
{
suite.add(i);
}
for(IntWritable cards : iw)
{
cardPresent = cards.get();
if(suite.contains(cardPresent))
{
suite.remove(suite.indexOf(cardPresent));
}
}
for(i=0;i<suite.size();++i)
{
c.write(t, new IntWritable(suite.get(i)));
}
}
}
public static void main(String[] args)throws Exception
{
Configuration config = new Configuration();
Job job = new Job(config, "MissingCards");
job.setJarByClass(MissingCards.class);
job.setMapperClass(Map.class);
job.setReducerClass(Reduce.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(IntWritable.class);
FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}