好吧所以我正在编写一个相对简单的程序,它从txt文档中获取字符从堆栈中弹出它们并将它们保存到第二个文件,但顺序如下:
你好!
!ereht olleh
我有一些代码,我一直在调整它,但它没有正确执行。
#include <iostream>
#include <fstream>
#include <string>
include <stack>
using namespace std;
void reverse(ifstream & infile, ofstream & outfile); //function prototype
void main ()
{
ifstream infile; // declaring a file for input
ofstream outfile; // declaring a file for output
infile.open ("myInputFile.txt");
if (!infile)
{ cout << "File could not be opened." << endl;
}
outfile.open ("myOutfile.txt");
reverse (infile, outfile);
infile.close();// Close both files
outfile.close();
system("pause");
}
void reverse (ifstream & infile, ofstream & outfile)
{
string s;
stack<string> mystack;
getline(infile, s); // try to read a line of text from the file
while (getline(infile, s)) // while not end of file
{
mystack.push(s);
getline(infile, s); // try to read another line
}
while (!mystack.empty())
{
s = mystack.top();
outfile << s << endl; // write s to the outfile
mystack.pop();
}
}
编辑:对不起,我忘记了最重要的部分..问题。程序执行时它对输出文件没有任何作用。所以这让我相信它在我的逻辑中反过来。
编辑:编辑:好吧,我一直在乱搞,我仍然无法让它完全做什么,它现在打印到输出文件,但它只需要第2行的内容并将其放入第1行。
示例:输入文件:
Hello world
How are things
输出文件:How are things
我想要的输出可能是所有字符都颠倒了,甚至只是单词顺序反转。
实施例 “dlrow olleh”或 “世界你好”
对不起,这是我的第一篇文章,但我正在努力寻求帮助。
提前谢谢!
答案 0 :(得分:0)
感谢您的帮助@ooga。流行音乐栈让我走上正轨,虽然这不是我的问题。
我意识到我正在使用字符串堆栈,因为我应该使用Char堆栈来执行我想要的操作并获得所需的输出。
程序现在很有效。
-Titan