Якщо вам зручно компілювати C ++, це повинно зробити трюк. В основному я розміщую кожен рядок файлу у векторному і вивожу його в новий файл, використовуючи зворотний ітератор.
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
int main()
{
std::vector<std::string> fileLines;
std::string currLine;
std::ifstream inFile("input.txt");
if (inFile.is_open())
{
while (inFile.good())
{
std::getline(inFile, currLine);
fileLines.push_back(currLine);
}
inFile.close();
}
else
{
std::cout << "Error - could not open input file!\n";
return 1;
}
std::ofstream outFile("output.txt");
if (outFile.is_open())
{
std::vector<std::string>::reverse_iterator rIt;
for (rIt = fileLines.rbegin(); rIt < fileLines.rend(); rIt++)
{
outFile << *rIt;
}
outFile.close();
}
else
{
std::cout << "Error - could not open output file!\n";
return 1;
}
return 0;
}
Якщо вихідний файл відсутні розриви рядків між рядками, а потім змінити , outFile << *rIt;
щоб бути outFile << *rIt << "\r\n";
так додаються розрив рядка (опустити , \r
якщо ви на Unix / Linux).
Відмова: Я не перевіряв цей код (я написав його дуже швидко в Блокноті), але він виглядає життєздатним.