nm92,Nate,Matthews,Aetna,1
sc91,Steve,Combs,Cigna,2
ml94,Morgan,Lands,BCBS,3
kb93,Kyle,Borris,Aetna,2
Я пытаюсь взять входной файл CSV, как указано выше, сохранить его, отсортировать по страховке (столбец 4), а затем записать его в файлы сравнения на основе страхования, но в алфавитном порядке по фамилии.
Вам не нужно читать весь мой код, чтобы помочь с последней частью, на которой я застрял (вывод файла), но я включил ее только для контекста.У меня есть все зачисленные в enrollVector [] уже отсортированные по страховке, затем по фамилии, так что операторы печати после вызова sort () выглядят следующим образом:
userid is:
fname is:
lname is:
insurance is:
version is:
userid is: kb93
fname is: Kyle
lname is: Borris
insurance is: Aetna
version is: 2
userid is: nm92
fname is: Nate
lname is: Matthews
insurance is: Aetna
version is: 1
userid is: ai90
fname is: Alex
lname is: Inter
insurance is: BCBS
version is: 4
userid is: ml94
fname is: Morgan
lname is: Lands
insurance is: BCBS
version is: 3
userid is: sc91
fname is: Steve
lname is: Combs
insurance is: Cigna
version is: 2
Итак, как вы можете видеть,мой вид и все, кажется, работает нормально (за исключением этого пустого зачисления в начале), но последний цикл записи данных в соответствующие выходные файлы страховки, похоже, не работает.Он ТОЛЬКО создает файл для Aetna и перечисляет правильных подписчиков в правильном алфавитном порядке, но никакие другие файлы страхования не создаются с другими подписчиками в нем.
Почему другие мои файлы insurance.csvне создается так, как мне кажется?
#include <iostream>
#include <string> // for strings
#include <fstream> // for file streams
#include <vector>
#include <bits/stdc++.h> // for sort() implementation
using namespace std;
struct enrollee
{
string userid = "";
string fname = "";
string lname = "";
string insurance = "";
string version = "";
};
int main()
{
ifstream inputFile; // create input file stream for reading only
vector <enrollee> enrollVector; // array of structs to store each enrollee and their respective data
int vectorPos = 0;
// open the input file to read
inputFile.open("input.csv");
// read the file until we reach the end
while(!inputFile.eof())
{
enrollee tempEnrollee;
string userid = "";
string fname = "";
string lname = "";
string insurance = "";
string sversion = "";
// read in and store the cols of each row in a temp var
getline(inputFile,userid,',');
getline(inputFile,fname,',');
getline(inputFile,lname,',');
getline(inputFile,insurance,',');
getline(inputFile,sversion);
// assign those vars to an enrollee object
tempEnrollee.userid = userid;
tempEnrollee.fname = fname;
tempEnrollee.lname = lname;
tempEnrollee.insurance = insurance;
tempEnrollee.version = sversion;
// push the enrollee object onto the enrollVector
enrollVector.push_back(tempEnrollee);
// count how many enrollees we add for later po
vectorPos++;
}
// this call to sort will sort the enrollVector by insurance, then lname, then fname, then version
sort( enrollVector.begin(), enrollVector.end(), []( const enrollee &e1, const enrollee e2 )
{
return tie( e1.insurance, e1.lname, e1.fname, e1.userid, e1.version ) < tie( e2.insurance, e2.lname, e2.fname, e2.userid, e2.version );
});
for (int i = 0; i < vectorPos; i++)
{
cout << "userid is: " << enrollVector[i].userid << endl;
cout << "fname is: " << enrollVector[i].fname << endl;
cout << "lname is: " << enrollVector[i].lname << endl;
cout << "insurance is: " << enrollVector[i].insurance << endl;
cout << "version is: " << enrollVector[i].version << endl;
}
// set up output stream
string tempInsurance;
ofstream outputFile;
// write sorted data to their respective files
for (int i = 1; i < enrollVector.size() - 1; i++)
{
// if we come across a new insurance name, then start a new file for it
if (tempInsurance != enrollVector[i].insurance)
{
tempInsurance = enrollVector[i].insurance;
outputFile.open( tempInsurance + ".csv");
}
// write data to the file
outputFile << enrollVector[i].lname << "," << enrollVector[i].fname << ","
<< enrollVector[i].userid << "," << enrollVector[i].insurance << ","
<< enrollVector[i].version << endl;
}
}