Last active
January 7, 2019 00:07
-
-
Save stuart-marks/c95e258a8a9727c5047102f5af488bd8 to your computer and use it in GitHub Desktop.
Processing Large Files in Java, Variation 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- ReadFileJavaApplicationBufferedReader5.java 2019-01-05 20:40:11.000000000 -0800 | |
+++ ReadFileJavaApplicationBufferedReader6.java 2019-01-05 20:40:15.000000000 -0800 | |
@@ -115,16 +115,9 @@ | |
} | |
} | |
- LinkedList<Entry<String, Integer>> list = new LinkedList<>(map.entrySet()); | |
+ Entry<String, Integer> common = Collections.max(map.entrySet(), Entry.comparingByValue()); | |
- Collections.sort(list, new Comparator<Map.Entry<String, Integer> >() { | |
- public int compare(Map.Entry<String, Integer> o1, | |
- Map.Entry<String, Integer> o2) | |
- { | |
- return (o2.getValue()).compareTo(o1.getValue()); | |
- } | |
- }); | |
- System.out.println("The most common first name is: " + list.get(0).getKey() + " and it occurs: " + list.get(0).getValue() + " times."); | |
+ System.out.println("The most common first name is: " + common.getKey() + " and it occurs: " + common.getValue() + " times."); | |
Instant commonNameEnd = Instant.now(); | |
long timeElapsedCommonName = Duration.between(commonNameStart, commonNameEnd).toMillis(); | |
System.out.println("Most common name time: " + timeElapsedCommonName + "ms"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment