1. C++ / Говнокод #19986

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    95. 95
    96. 96
    97. 97
    98. 98
    #include <fstream>
    #include <iostream>
    #include <string>
    #include <list>
    #include <vector>
    #include <set>
    #include <algorithm>
    
    std::vector<std::string> split(const std::string &text, char sep) {
    	std::vector<std::string> tokens;
    
    	std::size_t start = 0, end = 0;
    	while ((end = text.find(sep, start)) != std::string::npos) {
    		std::string temp = text.substr(start, end - start);
    		if (temp != "") tokens.push_back(temp);
    		start = end + 1;
    	}
    	std::string temp = text.substr(start);
    	if (temp != "") tokens.push_back(temp);
    	return tokens;
    
    }
    
    void ReplaceStringInPlace(std::string& subject, const std::string& search,
    	const std::string& replace) {
    	size_t pos = 0;
    	while ((pos = subject.find(search, pos)) != std::string::npos) {
    		subject.replace(pos, search.length(), replace);
    		pos += replace.length();
    	}
    }
    
    
    using namespace std;
    using std::vector;
    using std::list;
    using std::set;
    
    int main()
    {
    	setlocale(LC_ALL, "rus");
    
    	// задание 1
    	string buff;
    	list<string> allText;
    
    	//задание 2
    	list<string> chap1;
    	list<string> chap2;
    	list<string> chap3;
    	list<string> chap4;
    	list<string> chap5;
    	string::size_type n;
    	int chapter = 0;
    
    	//задание 5
    
    	vector<string> textWord;
    	vector<string> rezult;
    	vector <string>::size_type kolvotext=0;
    	set<string>Unique_word;
    	vector<string>::iterator j;
    
    	ifstream fin("D:\\lab_c__5_text.txt");
    	if (!fin.is_open())
    		cout << "Файл не может быть открыт!\n";
    	else {
    
    		while (getline(fin, buff)) {
    			allText.push_back(buff);
    			//разбиение по главам
    			n = buff.find("CHAPTER");
    			if (n == 0) {
    				chapter++;
    			}
    			if (chapter == 1) {
    				chap1.push_back(buff);
    			}
    			else if (chapter == 2) {
    				chap2.push_back(buff);
    			}
    			else if (chapter == 3) {
    				chap3.push_back(buff);
    			}
    			else if (chapter == 4) {
    				chap4.push_back(buff);
    			}
    			else if (chapter == 5) {
    				chap5.push_back(buff);
    			}
    			//разбиение по словам
    			
    			ReplaceStringInPlace(buff, ".", "");
    			ReplaceStringInPlace(buff, "!", "");
    			ReplaceStringInPlace(buff, "?", "");
    			ReplaceStringInPlace(buff, ",", "");
    			ReplaceStringInPlace(buff, ";", "");
    			ReplaceStringInPlace(buff, ":", "");

    http://cpp.sh/3nlm6
    Хз что там за задание, какая-то долгая и муторная работа с текстом.

    Запостил: Fluttie, 12 Мая 2016

    Комментарии (9) RSS

    • Что интересного и нового о C++ я должен был почерпнуть из этого поста?
      Ответить
      • астрологи объявили зачетную неделю
        концентрация лаб увеличилась
        Ответить
      • да ничего, опять сплошная брутальность - перед разбиением на лексемы замена знаков препинания на пробелы таким вот интересным образом, if-else-if-else-if-до-полного-просветления, отступы ну и всё такое прочее.
        Ответить
    • std::vector<std::string> split(const std::string &text, char sep) {
      	std::vector<std::string> tokens;
      
      //......
      
      using namespace std;
      using std::vector;
      using std::list;
      using std::set;

      Автор устал писать std:: настолько, что решил избавиться от него сразу всеми доступными способами
      Ответить

    Добавить комментарий