Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

P3221 Truhliaev Eduard task-3 #83

Open
wants to merge 2 commits into
base: task-3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 24 additions & 8 deletions src/main/java/ru/ifmo/cet/javabasics/WarAndPeaceExercise.java
Original file line number Diff line number Diff line change
@@ -1,21 +1,37 @@
package ru.ifmo.cet.javabasics;

import java.nio.file.Path;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.stream.Collectors;


public class WarAndPeaceExercise {

public static String warAndPeace() {
final Path tome12Path = Paths.get("src", "main", "resources", "WAP12.txt");
final Path tome34Path = Paths.get("src", "main", "resources", "WAP34.txt");

// TODO map lowercased words to its amount in text and concatenate its entries.
// TODO Iff word "котик" occurred in text 23 times then its entry would be "котик - 23\n".
// TODO Entries in final String should be also sorted by amount and then in alphabetical order iff needed.
// TODO Also omit any word with lengths less than 4 and frequency less than 10
String str = (read("WAP12.txt") + read("WAP34.txt")).replaceAll("[^а-яА-Яa-zA-Z]", " ");

throw new UnsupportedOperationException();
return Arrays.stream(str.split(" ")).collect(Collectors.groupingBy(s -> s.toLowerCase())).entrySet().stream()
.filter(it -> it.getKey().length() >= 4 && it.getValue().size() >= 10)
.sorted((a, b) -> a.getValue().size() == b.getValue().size() ?
(a.getKey().compareTo(b.getKey())) : b.getValue().size() - a.getValue().size())
.map(it -> it.getKey() + " - " + it.getValue().size())
.collect(Collectors.joining("\n"));

}

private static String read(String fileName)
{
try {
return String.join(" ", Files.readAllLines(Paths.get("src", "main", "resources", fileName),
Charset.forName("windows-1251")));
}catch(IOException ex)
{
return "";
}
}

}