Advertisement
chevengur

СПРИНТ №1 | Структуры и классы | Урок 6: Методы классов 1/5

Sep 19th, 2023
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.69 KB | None | 0 0
  1. #include <algorithm>
  2. #include <iostream>
  3. #include <set>
  4. #include <string>
  5. #include <utility>
  6. #include <vector>
  7.  
  8. using namespace std;
  9.  
  10. const int MAX_RESULT_DOCUMENT_COUNT = 5;
  11.  
  12. string ReadLine() {
  13.     string s;
  14.     getline(cin, s);
  15.     return s;
  16. }
  17.  
  18. int ReadLineWithNumber() {
  19.     int result = 0;
  20.     cin >> result;
  21.     ReadLine();
  22.     return result;
  23. }
  24.  
  25. vector<string> SplitIntoWords(const string& text) {
  26.     vector<string> words;
  27.     string word;
  28.     for (const char c : text) {
  29.         if (c == ' ') {
  30.             if (!word.empty()) {
  31.                 words.push_back(word);
  32.                 word.clear();
  33.             }
  34.         }
  35.         else {
  36.             word += c;
  37.         }
  38.     }
  39.     if (!word.empty()) {
  40.         words.push_back(word);
  41.     }
  42.  
  43.     return words;
  44. }
  45. //
  46. //set<string> ParseStopWords(const string& text) {
  47. //    set<string> stop_words;
  48. //    for (const string& word : SplitIntoWords(text)) {
  49. //        stop_words.insert(word);
  50. //    }
  51. //    return stop_words;
  52. //}
  53. //
  54. //struct DocumentContent {
  55. //    int id = 0;
  56. //    vector<string> words;
  57. //};
  58. //
  59. //struct Document {
  60. //    int id;
  61. //    int relevance;
  62. //};
  63. //
  64. //bool HasDocumentGreaterRelevance(const Document& lhs, const Document& rhs) {
  65. //    return lhs.relevance > rhs.relevance;
  66. //}
  67. //
  68. vector<string> SplitIntoWordsNoStop(const string& text, const set<string>& stop_words) {
  69.     vector<string> words;
  70.     for (const string& word : SplitIntoWords(text)) {
  71.         if (stop_words.count(word) == 0) {
  72.             words.push_back(word);
  73.         }
  74.     }
  75.     return words;
  76. }
  77. //
  78. //void AddDocument(vector<DocumentContent>& documents, const set<string>& stop_words, int document_id,
  79. //    const string& document) {
  80. //    const vector<string> words = SplitIntoWordsNoStop(document, stop_words);
  81. //    documents.push_back({ document_id, words });
  82. //}
  83. //
  84. //set<string> ParseQuery(const string& text, const set<string>& stop_words) {
  85. //    set<string> query_words;
  86. //    for (const string& word : SplitIntoWordsNoStop(text, stop_words)) {
  87. //        query_words.insert(word);
  88. //    }
  89. //    return query_words;
  90. //}
  91. //
  92. //int MatchDocument(const DocumentContent& content, const set<string>& query_words) {
  93. //    if (query_words.empty()) {
  94. //        return 0;
  95. //    }
  96. //    set<string> matched_words;
  97. //    for (const string& word : content.words) {
  98. //        if (matched_words.count(word) != 0) {
  99. //            continue;
  100. //        }
  101. //        if (query_words.count(word) != 0) {
  102. //            matched_words.insert(word);
  103. //        }
  104. //    }
  105. //    return static_cast<int>(matched_words.size());
  106. //}
  107. //
  108. //vector<Document> FindAllDocuments(const vector<DocumentContent>& documents,
  109. //    const set<string>& query_words) {
  110. //    vector<Document> matched_documents;
  111. //    for (const auto& document : documents) {
  112. //        const int relevance = MatchDocument(document, query_words);
  113. //        if (relevance > 0) {
  114. //            matched_documents.push_back({ document.id, relevance });
  115. //        }
  116. //    }
  117. //    return matched_documents;
  118. //}
  119. //
  120. //vector<Document> FindTopDocuments(const vector<DocumentContent>& documents,
  121. //    const set<string>& stop_words, const string& raw_query) {
  122. //    const set<string> query_words = ParseQuery(raw_query, stop_words);
  123. //    auto matched_documents = FindAllDocuments(documents, query_words);
  124. //
  125. //    sort(matched_documents.begin(), matched_documents.end(), HasDocumentGreaterRelevance);
  126. //    if (matched_documents.size() > MAX_RESULT_DOCUMENT_COUNT) {
  127. //        matched_documents.resize(MAX_RESULT_DOCUMENT_COUNT);
  128. //    }
  129. //    return matched_documents;
  130. //}
  131.  
  132. class SearchServer {
  133. public:
  134.     void AddDocument(int document_id, const string& document) {
  135.         const vector<string> words = SplitIntoWordsNoStop(document, stop_words_);
  136.         documents_.push_back({ document_id, words });
  137.     }
  138. private:
  139.     struct DocumentContent {
  140.         int id = 0;
  141.         vector<string> words;
  142.     };
  143.     vector<DocumentContent> documents_;
  144.     set<string> stop_words_;
  145. };
  146.  
  147. //int main() {
  148. //    const string stop_words_joined = ReadLine();
  149. //    const set<string> stop_words = ParseStopWords(stop_words_joined);
  150. //
  151. //    // Read documents
  152. //    vector<DocumentContent> documents;
  153. //    const int document_count = ReadLineWithNumber();
  154. //    for (int document_id = 0; document_id < document_count; ++document_id) {
  155. //        AddDocument(documents, stop_words, document_id, ReadLine());
  156. //    }
  157. //
  158. //    const string query = ReadLine();
  159. //    for (auto [document_id, relevance] : FindTopDocuments(documents, stop_words, query)) {
  160. //        cout << "{ document_id = "s << document_id << ", relevance = "s << relevance << " }"s
  161. //            << endl;
  162. //    }
  163. //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement