读入值并以c ++的形式存储在列表中

时间:2011-08-27 13:25:40

标签: c++ list stream text-files

我有一个包含如下数据的文本文件:

name
weight 
groupcode

name
weight
groupcode

name
weight
groupcode

现在我想将所有人的数据写入输出文件,直到达到最大重量10000公斤。

目前我有这个:

 void loadData(){
            ifstream readFile( "inFile.txt" );
            if( !readFile.is_open() )
        {
            cout << "Cannot open file" << endl;
        }
            else
            {
                    cout << "Open file" << endl;
            }

            char row[30]; // max length of a value
            while(readFile.getline (row, 50))
            {
                    cout << row << endl;
                    // how can i store the data into a list and also calculating the total weight?
            }
            readFile.close();
    }

我与visual studio 2010专业人士合作!

因为我是c ++初学者,所以可能有更好的方法!我愿意接受任何想法和建议

提前感谢!

4 个答案:

答案 0 :(得分:2)

这是一个线索。您是否看到代码与问题描述不匹配?在您的问题描述中,您将数据分为四个行,名称,重量,组代码和空白行。但是在您的代码中,每次循环时只读取一个行,每次循环时都应该读取四行行。像这样的东西

char name[30];
char weight[30];
char groupcode[30];
char blank[30];
while (readFile.getline (name, 30) && 
    readFile.getline (weight, 30) && 
    readFile.getline (groupcode, 30) && 
    readFile.getline (blank, 30)) 
{
    // now do something with name, weight and groupcode
}

很长一段时间并不完美,但希望能让你开始走上正轨。请记住,代码的结构应与问题描述的结构相匹配。

答案 1 :(得分:2)

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <limits>

struct entry
{
    entry()
        : weight()
    { }

    std::string name;
    int weight; // kg
    std::string group_code;
};

// content of data.txt
// (without leading space)
//
// John
// 80
// Wrestler
// 
// Joe
// 75
// Cowboy


int main()
{
    std::ifstream stream("data.txt");
    if (stream)
    {
        std::vector<entry> entries;

        const int limit_total_weight = 10000;   // kg
        int total_weight = 0;                   // kg

        entry current;
        while (std::getline(stream, current.name) &&
               stream >> current.weight &&
               stream.ignore(std::numeric_limits<std::streamsize>::max(), '\n') &&  // skip the rest of the line containing the weight
               std::getline(stream, current.group_code))
        {
            entries.push_back(current);

            total_weight += current.weight;
            if (total_weight > limit_total_weight)
            {
                break;
            }

            // ignore empty line
            stream.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
        }
    }
    else
    {
        std::cerr << "could not open the file" << std::endl;
    }
}

编辑:由于您想将条目写入文件,只需将条目流出而不是将其存储在向量中。当然,你可以重载运算符&gt;&gt;和运算符&lt;&lt;对于输入类型。

答案 2 :(得分:0)

有两个文件指针,尝试读取输入文件并继续写入o / p文件。同时有一个计数器,并随着重量不断增加。当重量> = 10k时,打破循环。到那时,您将需要o / p文件中的数据。

使用此链接获取I / O API列表: http://msdn.microsoft.com/en-us/library/aa364232(v=VS.85).aspx

答案 3 :(得分:0)

如果您想通过各种方法来自己构建一个工作程序,请阅读此内容。如果您宁愿通过示例学习并研究C ++输入/输出的强大示例,我肯定建议仔细研究Simon的代码。

首先要做的事情:当你写下“char row [30];”时,你创建了一个包含30个字符的行缓冲区。 在下一行中,您应该将readFile.getline(row,50)调用更改为readFile.getline(row,30)。否则,它将尝试读取50个字符,如果有人的名称长度超过30,则缓冲区中的内存将被破坏。所以,这是禁忌。 ;)

如果您想学习C ++,我强烈建议您使用标准库进行I / O而不是rplusg建议的Microsoft特定库。你使用ifstream和getline走在正确的轨道上。如果你想学习纯C ++,Simon在关于为std :: string切换字符数组的评论中有正确的想法。

无论如何,约翰提出了关于围绕问题描述构建程序的好建议。正如他所说,你将希望在循环的每次迭代中读取四行。当你阅读权重线时,你会想要找到一种方法来获得它的数字输出(如果你坚持使用字符数组,请尝试http://www.cplusplus.com/reference/clibrary/cstdlib/atoi/,或尝试http://www.cplusplus.com/reference/clibrary/cstdlib/atof/获取非整数)。然后,您可以将其添加到正在运行的重量总计中。每次迭代,根据需要将数据输出到文件,一旦你的权重总和> = 10000,那就是当你知道要脱离循环时。

但是,你可能根本不想在你的while条件中使用getline:因为你必须使用getline每次循环迭代四次,你要么必须使用类似于Simon的代码,要么将结果存储在四个单独的缓冲,如果你这样做(否则,你没有时间读取重量并在读入下一行之前打印出行!)。

相反,您也可以将循环结构为while(total&lt; = 10000)或类似的东西。在这种情况下,您可以在循环内部使用四组if(readFile.getline(row,30)),并且您将能够读取权重并在每组之间打印出来。循环将在总重量超过10000的迭代之后自动结束...但是如果到达文件的末尾,你也应该突破它,否则你将永远陷入循环。 :P

祝你好运!