Library-2-1.cpp 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. public:
  62. void input_pages_size(int size){
  63. pages.resize(size);
  64. count_target_word_in_pages.resize(size);
  65. }
  66. void input_pages(){
  67. string title = "";
  68. string text = "";
  69. for (int i = 0; i < pages.size(); i++){
  70. cout << "\n\n\t\tInput " << i+1 << " page's title: ";
  71. getline(cin, title);
  72. pages[i].input_title(title);
  73. cout << "\n\t\tInput " << i+1 << " page's text:\n\n\t\t\t";
  74. getline(cin, text);
  75. pages[i].input_text(text);
  76. }
  77. }
  78. void output_pages(){
  79. for (int i = 0; i < pages.size(); i++){
  80. cout << "\n\n\t\t" << i+1 << " page's title: " << pages[i].get_title();
  81. cout << "\n\t\t" << i+1 << " page's text:\n\n\t\t\t" << pages[i].get_text();
  82. }
  83. }
  84. void delete_target_word(string target_word, int page_index){
  85. pages[page_index].delete_target_word(target_word);
  86. }
  87. int get_count_target_word(string target_word){
  88. int count = 0;
  89. for (int i = 0; i < pages.size(); i++){
  90. count_target_word_in_pages[i] = pages[i].get_count_target_word(target_word);
  91. }
  92. for (int i = 0; i < count_target_word_in_pages.size(); i++){
  93. count += count_target_word_in_pages[i];
  94. }
  95. return count;
  96. }
  97. int get_book_size(){
  98. return pages.size();
  99. }
  100. };
  101. class Library {
  102. int pages_size;
  103. int book_index = -1;
  104. int book_max;
  105. vector <Book> libre;
  106. vector <int> count_target_word_in_library;
  107. public:
  108. Library(){
  109. input_library_size();
  110. }
  111. void input_library_size(){
  112. int size;
  113. cout << "Input library size: ";
  114. cin >> size;
  115. cin.get();
  116. cout << endl;
  117. if (size < 1){
  118. cout << "\nLibrary's size can't be less than 1.\n";
  119. exit(0);
  120. }
  121. libre.resize(size);
  122. count_target_word_in_library.resize(size);
  123. }
  124. void input_library(){
  125. for (int i = 0; i < libre.size(); i++){
  126. cout << "\n\tInput " << i+1 << " book page's quantity: ";
  127. cin >> pages_size;
  128. cin.get();
  129. cout << endl;
  130. libre[i].input_pages_size(pages_size);
  131. libre[i].input_pages();
  132. }
  133. }
  134. void output_library(){
  135. cout << "\n\nOutput lybrary";
  136. for (int i = 0; i < libre.size(); i++){
  137. cout << "\n\n\t" << i+1 << " book:";
  138. libre[i].output_pages();
  139. }
  140. cout << "\n\n";
  141. }
  142. int get_book_index(string target_word){
  143. for (int i = 0; i < libre.size(); i++){
  144. count_target_word_in_library[i] = libre[i].get_count_target_word(target_word);
  145. }
  146. book_max = count_target_word_in_library[0];
  147. for (int i = 0; i < libre.size(); i++){
  148. if (book_max <= count_target_word_in_library[i]){
  149. book_max = count_target_word_in_library[i];
  150. book_index = i;
  151. }
  152. }
  153. if (book_max == 0)
  154. book_index = -1;
  155. return book_index;
  156. }
  157. bool check_page_exist(int page_index){
  158. return (page_index >= 0 && page_index < libre[book_index].get_book_size());
  159. }
  160. void delete_target_word(string target_word, int page_index){
  161. libre[book_index].delete_target_word(target_word, page_index);
  162. }
  163. };
  164. int main(){
  165. int books_size;
  166. int book_index;
  167. int page_index;
  168. string target_word;
  169. system("clear");
  170. // system("cowsay -t \"Привет, это программа для задания 2.1. Пожайлуста не ломайте её лишний раз, я итак уже вскрылся, пока её писал.\"");
  171. // system("sleep 7 && clear");
  172. // system("jp2a Armstrong-profile.jpg --colors&& echo \"\nNanomachines, son!\n© Senator Armstrong\"");
  173. // system("sleep 4 && clear");
  174. // system("jp2a ukr-bomb.jpg --colors && echo \"\nУкрасинька бимба.\n© Хохланд\"");
  175. // system("sleep 4 && clear");
  176. // system("jp2a glasses.jpg --colors && echo \"\nКазах без понтов - беспонтовый казах.\n© Неизвестный\"");
  177. // system("sleep 5 && clear");
  178. Library lib = Library();
  179. lib.input_library();
  180. cout << "\n\nInput target word: ";
  181. cin >> target_word;
  182. cin.get();
  183. cout << endl;
  184. book_index = lib.get_book_index(target_word);
  185. if (book_index == -1){
  186. cout << "\nInputed word doesn't find.\n";
  187. return 0;
  188. }
  189. cout << "\nIndex of found book: " << book_index + 1 << endl;
  190. cout << "\n\nInput book's page: ";
  191. cin >> page_index;
  192. cin.get();
  193. cout << endl << endl;
  194. if (!(lib.check_page_exist(page_index - 1))){
  195. cout << "Inputed index page doesn't exist.\n";
  196. return 0;
  197. }
  198. lib.delete_target_word(target_word, page_index - 1);
  199. lib.output_library();
  200. return 0;
  201. }