我的字母字符串管理器无法正确保存到文件中

时间:2015-12-08 21:15:50

标签: c++ fstream

我有一个函数,我想要一个文件,查看文件中的单词,按字母顺序排列它们并用它替换文件。到目前为止,我已按字母顺序排列。问题是,它只保存文件的最后一个字。 这是我目前的代码:

void thingy(string Item)
{
        fstream File;  // Open the file, save the sorted words in it, and then close it.
        File.open("Data/Alphabet.txt", ios::out | ios::in);
        File << Item;
        File.close();
}




void Alphabetical_Order(string Text_File)
{

fstream file;      
file.open(Text_File);         // Open the file that we are going to organize
std::set<std::string> sortedItems;  // The variable that we will store the sorted words in


fstream words;            // To see how many words are in the file
words.open(Text_File);
int Words = 0;
do
{
    string word;
    words >> word;
    Words++;
} while (!words.eof());




for (int i = 1; i <= Words; ++i)  // Set a loop to take the words out of the file and put them in our variable
{
    std::string Data;
    file >> Data;
    Data = Data + " ";
    sortedItems.insert(Data);
}





std::for_each(sortedItems.begin(), sortedItems.end(), thingy);
}

有谁知道如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

当您在fstream中打开thingy时,请尝试使用ios::ate标记打开。这将允许您将文本追加到文件中,而不是每次调用函数时都重写。

话虽如此,每次调用该函数时都不应该打开和关闭文件。也许传递对fstream的引用,该引用从函数thingy外部进行管理。

我希望这会有所帮助。

答案 1 :(得分:0)

Aiden已经指出了代码中的主要问题(+1)。

对于记录,我想使用功能强大的ostream_iterator为您提供更高效的输出:它避免了很多次打开/关闭输出文件,并且不需要在所有字符串中使用尾随空格。话虽这么说,我建议也取消不必要的双通读:

void Alphabetical_Order(string Text_File)
{
    ifstream file(Text_File);    // Open in read mode   
    std::string word;
    std::set<std::string> sortedItems;  // The variable that we will store the sorted words in

    while (file >> word) {       // just read the file in one pass 
        sortedItems.insert(word);    // to populate the set
    }

    ofstream ofs("alphasorted.txt");                                  
    std::copy(sortedItems.begin(), sortedItems.end(), std::ostream_iterator<std::string>(ofs, " "));
}