0

次のようにtxtファイルから入力を読み取る次のコードがあります

Paris,Juli,5,3,6 
Paris,John,24,2 
Canberra,John,4,3 
London,Mary,29,4,1,2

私のコードは、データをマップにロードすることです。次に、マップのコンテンツを印刷して、それが正しく挿入されていることを確認します。行の分割中に使用される m の値を確認します。ただし、実行中に 0 が続くため、これは while ループに入らないことを意味します。コードのこの部分を以前に使用したことがありますが、機能します。どこで間違えたのか見つけられませんでした。

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <vector>
#include<map>
using namespace std;

struct info {
       string Name;
       int places;// i will use the binary value to identfy the visited places example 29 is 100101 
             // this means he visited three places (London,LA,Rome)   
       vector<int> times; // will represent the visiting time,e.g. 1,2,5 means london 1 time, LA 
                   // twice and Rome five times 


       };
map<string,vector<info> > log;
map<string,vector<info> >::iterator i;
fstream out;
int main() {
    out.open("log.txt", std::ios::in | std::ios::out | std::ios::app);
            string line;
            char* pt;
            string temp[19];

    // for each line in the file 
    while (!out.eof())
    {
         getline(out,line);//read line from the file
         pt=strtok(&line[0],"," );//split the line
         int m=0;
         while (pt != NULL)
         {
         temp[m++] = pt; // save the line info to the array
         cout<<m<<"  ";
         pt = strtok (NULL, ",");
         }
         cout<<m<<"  "; // during the execution I get this as continues 0s which means it is never enter the while loop
         info tmp;
         // read the other data
         tmp.Name=temp[1];
         tmp.places=atoi(temp[2].c_str());
         for ( int i=3;i<=m;i++)
         { 
         tmp.times.push_back(atoi(temp[i].c_str()));
         }         
         // create a new object 
         log[temp[0]].push_back(tmp); 
         }

 vector<int>::iterator j; 
    for(i=log.begin();i!=log.end();i++) {
    cout<< "From "<< i->first<<" city people who travels: "<<endl; 
    for (size_t tt = 0; tt < (i->second).size(); tt++) {
    cout<< (i->second[tt]).Name<< " went to distnations "<< (i->second)[tt].places<<" \nwith the folloing number of visiting time "; 
    for (j=((i->second[tt]).times).begin();j!= ((i->second[tt]).times).end();j++) 
    cout<<*j<<" ";
     } 
    }  


          system("PAUSE");
          return 0;
          }
4

5 に答える 5

1

std::stringを使用して をトークン化することはできませんstrtokgetline代わりに使用してください:

std::string str("some,comma,separated,data");
std::string token;
while (getline(str, token, ',')) {
    cout << "Token: " << token << end;
}

反復ごとtokenに、 から次に解析されたトークンが含まれますstr

于 2012-10-17T10:59:55.917 に答える
1

fstream はアプリ モードで開くべきではありません。これにより、ファイルの最後までファイルがシークされます。そこから削除std::ios::appします。

于 2012-10-17T11:00:11.923 に答える
0

@halfelf私の単純なエラーに対する本当に素晴らしい解決策、それは機能しますが、問題は私がこれを得たデータを印刷するときです

From Paris  city people who travels:
Juli went to distnations 5
with the folloing number of visiting time 3 6 0 
John went to distnations 24
with the folloing number of visiting time 2 6 
From Canberra  city people who travels:
Johnwent to distnations 4
with the folloing number of visiting time 3  6
From London city people who travels:
Mary went to distnations 29
with the folloing number of visiting time 4 1 2 0

キャンベラとパリのジョンには 6 が加算され、ジュリとメアリーには 0 が加算されるため、これは正しくありません。どこが間違っているのか、それは times vector についてです。各行の値をリセットするか、挿入後にコンテンツをクリアする必要があるようです。余分な0はどうですか?

于 2012-10-17T11:50:10.967 に答える