Library-2-2-1.cpp 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. #include <iostream> // библиотке ввода-вывода
  2. #include <string> // библиотека строк
  3. #include <vector> // библиотека векторов (динамических массивов без ограничений памяти)
  4. using namespace std;
  5. class Page {
  6. string page_title;
  7. string page_text;
  8. vector <string> page_words;
  9. public:
  10. vector <string> transform_text_to_words(string file_text){
  11. vector <string> words; // массив для хранения слов строки (используется вектор для устранения ограничения на размер памяти)
  12. string word = "";
  13. for (int i = 0; i <= file_text.size(); i++) { // цикл на прохождение строки
  14. if (!(isspace(file_text[i]) || ispunct(file_text[i]) || file_text[i] == '\0')){
  15. word.push_back(file_text[i]);
  16. continue;
  17. }
  18. if (word.empty())
  19. continue;
  20. words.push_back(word);
  21. word.clear();
  22. }
  23. return words; // возвращаем отсортированный массив
  24. }
  25. void input_title(string title){
  26. page_title = title;
  27. }
  28. void input_text(string text){
  29. page_text = text;
  30. page_words = transform_text_to_words(page_text);
  31. }
  32. void delete_target_word(string target_word){
  33. string new_text = "";
  34. for (int i = 0; i < page_words.size(); i++){
  35. if (target_word == page_words[i])
  36. continue;
  37. new_text.append(page_words[i]);
  38. new_text.append(" ");
  39. }
  40. page_text = new_text;
  41. }
  42. string get_text(){
  43. return page_text;
  44. }
  45. string get_title(){
  46. return page_title;
  47. }
  48. int get_count_target_word(string target_word){
  49. int count = 0;
  50. for (int i = 0; i < page_words.size(); i++){
  51. if (page_words[i] == target_word){
  52. count++;
  53. }
  54. }
  55. return count;
  56. }
  57. };
  58. class Book {
  59. vector <Page> pages;
  60. vector <int> count_target_word_in_pages;
  61. static int books_number;
  62. public:
  63. void input_pages_size(int size){
  64. pages.resize(size);
  65. count_target_word_in_pages.resize(size);
  66. }
  67. void input_pages(){
  68. string title = "";
  69. string text = "";
  70. for (int i = 0; i < pages.size(); i++){
  71. cout << "\n\n\t\tInput " << i+1 << " page's title: ";
  72. getline(cin, title);
  73. pages[i].input_title(title);
  74. cout << "\n\t\tInput " << i+1 << " page's text:\n\n\t\t\t";
  75. getline(cin, text);
  76. pages[i].input_text(text);
  77. }
  78. }
  79. void output_pages(){
  80. for (int i = 0; i < pages.size(); i++){
  81. cout << "\n\n\t\t" << i+1 << " page's title: " << pages[i].get_title();
  82. cout << "\n\t\t" << i+1 << " page's text:\n\n\t\t\t" << pages[i].get_text();
  83. }
  84. }
  85. void delete_target_word(string target_word, int page_index){
  86. pages[page_index].delete_target_word(target_word);
  87. }
  88. int get_count_target_word(string target_word){
  89. int count = 0;
  90. for (int i = 0; i < pages.size(); i++){
  91. count_target_word_in_pages[i] = pages[i].get_count_target_word(target_word);
  92. }
  93. for (int i = 0; i < count_target_word_in_pages.size(); i++){
  94. count += count_target_word_in_pages[i];
  95. }
  96. return count;
  97. }
  98. int get_book_size(){
  99. return pages.size();
  100. }
  101. };
  102. class Library {
  103. int pages_size;
  104. int book_index = -1;
  105. int book_max;
  106. vector <Book> libre;
  107. vector <int> count_target_word_in_library;
  108. public:
  109. Library(int size){
  110. libre.resize(size);
  111. count_target_word_in_library.resize(size);
  112. cout << "Constructor " << this << " initialized\n";
  113. }
  114. void input_library(){
  115. for (int i = 0; i < libre.size(); i++){
  116. cout << "\n\tInput " << i+1 << " book page's quantity: ";
  117. cin >> pages_size;
  118. cin.get();
  119. cout << endl;
  120. libre[i].input_pages_size(pages_size);
  121. libre[i].input_pages();
  122. }
  123. }
  124. void output_library(){
  125. cout << "\n\nOutput lybrary";
  126. for (int i = 0; i < libre.size(); i++){
  127. cout << "\n\n\t" << i+1 << " book:";
  128. libre[i].output_pages();
  129. }
  130. cout << "\n\n";
  131. }
  132. int get_book_index(string target_word){
  133. for (int i = 0; i < libre.size(); i++){
  134. count_target_word_in_library[i] = libre[i].get_count_target_word(target_word);
  135. }
  136. book_max = count_target_word_in_library[0];
  137. for (int i = 0; i < libre.size(); i++){
  138. if (book_max <= count_target_word_in_library[i]){
  139. book_max = count_target_word_in_library[i];
  140. book_index = i;
  141. }
  142. }
  143. if (book_max == 0)
  144. book_index = -1;
  145. return book_index;
  146. }
  147. bool check_page_exist(int page_index){
  148. return (page_index >= 0 && page_index < libre[book_index].get_book_size());
  149. }
  150. void delete_target_word(string target_word, int page_index){
  151. libre[book_index].delete_target_word(target_word, page_index);
  152. }
  153. ~Library(){
  154. cout << "Destructor " << this << " initialized\n";
  155. }
  156. };
  157. int main(){
  158. int books_size;
  159. int book_index;
  160. int page_index;
  161. string target_word;
  162. system("clear");
  163. // system("cowsay -t \"Привет, это программа для задания 2.1. Пожайлуста не ломайте её лишний раз, я итак уже вскрылся, пока её писал.\"");
  164. // system("sleep 10 && clear");
  165. // system("jp2a Armstrong-profile.jpg --colors&& echo \"\nNanomachines, son!\n© Senator Armstrong\"");
  166. // system("sleep 6 && clear");
  167. // system("jp2a ukr-bomb.jpg --colors && echo \"\nУкрасинька бимба.\n© Хохланд\"");
  168. // system("sleep 4 && clear");
  169. // system("jp2a glasses.jpg --colors && echo \"\nКазах без понтов - беспонтовый казах.\n© Неизвестный\"");
  170. // system("sleep 4 && clear");
  171. cout << "Input library size: ";
  172. cin >> books_size;
  173. cin.get();
  174. cout << endl;
  175. if (books_size < 1){
  176. cout << "\nLibrary's size can't be less than 1.\n";
  177. return 0;
  178. }
  179. Library *lib = new Library(books_size);
  180. (*lib).input_library();
  181. cout << "\n\nInput target word: ";
  182. cin >> target_word;
  183. cin.get();
  184. cout << endl;
  185. book_index = (*lib).get_book_index(target_word);
  186. if (book_index == -1){
  187. cout << "\nInputed word doesn't find.\n";
  188. return 0;
  189. }
  190. cout << "\nIndex of found book: " << book_index + 1 << endl;
  191. cout << "\n\nInput book's page: ";
  192. cin >> page_index;
  193. cin.get();
  194. cout << endl << endl;
  195. if (!((*lib).check_page_exist(page_index - 1))){
  196. cout << "Inputed index page doesn't exist.\n";
  197. return 0;
  198. }
  199. (*lib).delete_target_word(target_word, page_index - 1);
  200. (*lib).output_library();
  201. delete lib;
  202. return 0;
  203. }