forked from Palamariuk/TextAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextanalyzer.h
62 lines (45 loc) · 2.18 KB
/
textanalyzer.h
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
#ifndef TEXTANALYZER_H
#define TEXTANALYZER_H
#include "text.h"
#include <QDebug>
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <map>
class TextAnalyzer {
public:
/*Конструктори*/
TextAnalyzer() = default;
TextAnalyzer(Text text);
/*Деструктор*/
virtual ~TextAnalyzer() = default;
/*Методи доступу до полів*/
[[nodiscard]] inline const Text &text() const {return text_;}
inline void setText(const Text &text) {text_ = text;}
/*Методи розділення тексту на складові у вектор стрічок*/
QVector<QString> splitIntoSentences();
QVector<QString> splitIntoWords();
/*Методи отримання однакових складових тексту у вектор стрічок*/
QVector<QString> getIdenticalSentences();
QVector<QString> getIdenticalProperNames();
/*Метод знаходження всіх входжень підстрічки в текст*/
QVector<int> findAll(QString substring);
/*Метод знаходження всіх слів та їх позиції у тексті*/
QVector<QPair<QString, int>> getWordsPositions();
/*Методи обчислення кількості символів/букв/слів/речень у тексті*/
[[nodiscard]] int computeNumberOfSymbol(char symbol);
[[nodiscard]] int computeNumberOfLetters();
[[nodiscard]] int computeNumberOfWords();
[[nodiscard]] int computeNumberOfSentences();
/*Методи обчислення мінімальної/максимальної довжини слів у тексті*/
[[nodiscard]] int computeMinWordsLength();
[[nodiscard]] int computeMaxWordsLength();
/*Методи обчислення середньої довжини слів/речень у тексті*/
[[nodiscard]] double computeAverageWordsLength();
[[nodiscard]] double computeAverageSentencesLength();
/*Метод створення нового тексту з кількостями повторень слів*/
Text generateRepeatNumbers();
private:
Text text_;
};
#endif // TEXTANALYZER_H