-1

I/O やテキスト ファイルの使用経験があまりないのに、CSE ラボを完了しようとしています。このプログラムの目標は、ユーザーが入力した単語と定義に基づいて辞書を作成することです。出力テキスト ファイルの形式は次のとおりです。

エントリ数 (数字)

意味

意味

等。

この時点で、すべての単語が「Alberta」で定義が「Threesome」の場合、出力は次のようになります。

1

アルバータ州

三人組

2アルバータ州

三人組

2アルバータ州

三人組

何かが明らかにかなり間違っています。結果のコードは次のとおりです。ごちゃごちゃしていて、出力ステートメントが奇妙に分かれている場合は申し訳ありません。しばらくの間、これを理解しようとしてきました。

#include <iostream>
#include <string>
#include <fstream>
#include <stdlib.h>

using namespace std;
int main() 
{
    string name; // Name of writing/reading document

cout << "Please enter the path (including file name) for the dictionary you want to create: " ;
getline(cin,name); // Inputs name

fstream dicFile;

int addcount = 0; // number of times file has been added to.

int choice = 0; // Controls while loop

while (choice != 3) 
{
    cout << "- - - - - - - - - -" << endl;
    cout << "1) Add a word to the dictionary" << endl;
    cout << "2) Print Dictionary" << endl;
    cout << "3) Quit" << endl;
    cout << "Choose an option from the menu: ";

    string choiceS;
    getline(cin,choiceS);

    choice = atoi(choiceS.c_str());

    string wordAdd; // Stores word to be added
    string defAdd; // Stores definition to be added

    int size = 1; // Number of entries after the first entry

    if(choice > 0 && choice < 4)
    {
        cout << "- - - - - - - - - -" << endl;

        if(choice == 1) 
        {
                            
            if(addcount == 0) 
            {
                dicFile.open(name.c_str(),ios::in|ios::out|ios::app);
                cout << "Enter a word or phrase to add to the dictionary: ";
                getline(cin,wordAdd);
                dicFile << size;
                dicFile << endl;
                dicFile << wordAdd;

                dicFile << endl;

                cout << "Enter the definition for \"" << wordAdd << "\": ";
                getline(cin,defAdd);
                dicFile << defAdd << endl;
    
                dicFile.close();    
                addcount++;
            }
            
            else 
            {
                dicFile.open(name.c_str(),ios::in|ios::out|ios::app);
                size = size + 1;
                dicFile << size;
                dicFile.close();

                dicFile.open(name.c_str(),ios::in|ios::out|ios::app);
                cout << "Enter a word or phrase to add to the dictionary: ";
                getline(cin,wordAdd);
                dicFile << wordAdd;

                dicFile << endl;

                cout << "Enter the definition for \"" << wordAdd << "\": ";
                getline(cin,defAdd);
                dicFile << defAdd << endl;
    
                dicFile.close();
            }

            
        }   

        if(choice == 2)
        {
            if(true)
            {
                dicFile.open(name.c_str(),ios::in);
                
                string readSize;
                int readSizei;
                
                getline(dicFile,readSize);
                readSizei = atoi(readSize.c_str());

                for(int i = 0; i < readSizei*2 + 1; i++)
                {
                    string word;
                    string def;
                    getline(dicFile,word);
                    cout << word << endl;
                    getline(dicFile,def);
                    cout << def << endl;
                }
                dicFile.close();    
            }

            else 
            {   cout << "- - - - - - - - - -" << endl;
                cout << "The dictionary is empty!" << endl;
            }
        }
        
    }

    else 
    {   cout << "- - - - - - - - - -" << endl; 
        cout << "Invalid menu selection (number should be between 1-3)" << endl; 
    }

}
}

テキスト ファイルの最初の行を上書きし、オプション 2 を選択したときに新しい定義をファイルに追加するにはどうすればよいですか? I/O の初心者です。御時間ありがとうございます。

4

1 に答える 1

1

既存のファイルを「その場で」変更することはできません。代わりに、新しい一時ファイルを作成し、必要な変更を加えてすべてを一時ファイルにコピーする必要があります。次に、一時ファイルの名前を元のファイルに変更して、置き換えます。

擬似コード:

open_old_file();
create_temporary_file();

while (read_line_from_old_file())
{
    do_possible_modifications_to_line();
    write_line_to_temporary_file();
}

close_temporary_file();
close_old_file();

rename_temporary_file_to_old_file();
// or if the above doesn't work:
//   copy_temporary_file_to_old_file();
//   delete_temporary_file();
于 2012-09-30T13:57:57.510 に答える