Запись в текстовый файл из списка массивов C ++ - PullRequest
2 голосов
/ 14 ноября 2011

У меня есть файл с 10 целыми числами. Я прочитал файл и поместил его в список. Затем я изменяю список (добавляю, удаляю и т. Д.), И теперь я хочу иметь возможность сохранить этот список. Поэтому я понятия не имею, как взять элементы из списка массивов и сохранить их в файл.

1) Прочитайте файл и поместите его в список:

ifstream intFile, floatFile;
ofstream intFileOut, floatFileOut;

SortedList<int> intList;
SortedList<float> floatList;
int a=0;
float b=0;

intFile.open("int.dat");                            
floatFile.open("float.dat");    

while(intFile>>a)
{
    intList.InsertItem(a);
    a++;
}

while(floatFile >>b)
{
    floatList.InsertItem(b);
    b++;
}

intFile.close();    
floatFile.close();

2) Изменен список

cout<<"------------------------------"<<endl;
cout<<"INT LIST: "<<endl;
cout<<"Adding 1 to list..."<<endl;
intList.InsertItem(1);
cout<<"Adding 2 to list..."<<endl;
intList.InsertItem(2);
cout<<"Deleting int 20 from the list..."<<endl;
intList.DeleteItem(20);
cout<<"------------------------------"<<endl;
cout<<"INTs in the list: "<<endl;
intList.GetNextItem(a);
cout<<"------------------------------"<<endl;
cout<<"Retriving int 30..."<<endl;
cout<<"Position of int 30: ";intList.RetrieveItem(30);cout<<endl;

3) Теперь я хочу взять intList и сохранить его в intFileOut, если это имеет смысл?

Любые советы / помощь будут оценены.

1 Ответ

1 голос
/ 14 ноября 2011

Это работает для вас?
(У меня не установлен Visual C ++, и я не знаком с его особенностями)

for (int i = 0; i < intList.Count; i++)
{
    intFileOut << intList.GetByIndex(i) << endl;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...