Разработать программу на C++. В произвольном тексте (взятом из файла), содержащем не более 10 строк, в каждой строке не более 80 символов (текст вывести на экран), найти и вывести на экран слова, которые входят в текст более одного раза. Выводимые слова упорядочить по убыванию количество вхождения слов в текст. Выведенную информацию продублировать в выходной текстовый файл, имя файла задает пользователь.
#include <iostream>
#include <vector>
#include <fstream>
using namespace std;
struct Word
{
string word;
int amount = 1;
};
int main()
{
ifstream input;
input.open("text.txt");
vector<Word> words;
while(!input.eof())
{
string str;
getline(input, str);
cout << str << "\n";
}
cout << "\n";
input.close();
input.open("text.txt");
while(!input.eof())
{
Word word;
input >> word.word;
words.push_back(word);
}
input.close();
string file;
ofstream create(file);
cout << "Input file name: ";
cin >> file;
cout << "\n";
create << file;
ofstream output(file);
for(int i = 0; i < words.size() - 1; i++)
for(int j = i + 1; j < words.size(); j ++)
if(words[i].word == words[j].word && words[i].word != "NULL")
{
words[i].amount++;
words[j] = {"NULL", -1};
}
for (int i = 0; i < words.size() - 1; i++)
for (int j = 0; j < words.size() - 1; j++)
if (words[j].amount < words[j + 1].amount)
swap(words[j], words[j + 1]);
for (int i = 0; i < words.size(); i++)
if(words[i].amount > 1)
{
cout << words[i].word << " ";
output << words[i].word << " ";
}
output.close();
return 0;
}