读取.csv文件C ++时的Atoi功能

时间:2016-01-31 19:52:38

标签: c++ csv atoi

当我的代码进入“atoi”函数时,我的代码执行崩溃,但我无法理解为什么。 该代码应该从.csv文件读取矩阵,考虑: - 第一行(直到第一行'\ n')并将每个元素(用','分隔)保存在整数向量中; - 矩阵的其余部分,通过查看每个元素并在读取的数字为1或2时创建特定对象。 我在调试程序时没有遇到任何异常,它只是在执行期间崩溃(并且使用系统(“PAUSE”)我可以发现它是atoi函数,它无法正常工作)。 你能帮我理解出了什么问题吗? 非常感谢你。 Ps:我还附加了我正在加载的所有库...也许它可以帮助:)

#include <fstream>
#include <stdio.h>
#include <sstream>
#define nullptr 0
#include <string>
#include "classi.h"
#include <cstdlib>
#include <stdlib.h>
#include <iostream>
#include <vector>
using namespace std;


int main(int argc, char *argv[]) {
    ifstream file("problem.csv");
    unsigned int N = 0;
    unsigned int M = 0;
    char c; //modificato char * c;
    unsigned int i=0,j=0, k=0, n_iter, j_temp =0;
    std::vector<car> v_row;
    std::vector<car> v_col_temp;
    std::vector<int> iter; // location where I want to save the ints corresponding to the elements of the first row of the .csv file //
    std::string iterazioni; //location where I want to save the first row as a string and then cut it into pieces (iteraz) and then convert (atoi --> iter)
    std::string iteraz;

    while(!file.eof()){
        std::getline(file,iterazioni,'\n');
        stringstream it(iterazioni);
        while (it.good()) {
            std::getline(it,iteraz, ',');
            iter[k] = atoi(iteraz.c_str());
            if(iter[k]<0){
                cout<<"Errore: negative #of iterations"<<endl;
                break;
            }
            iter.push_back(0);
            k++;
        }
        iter.pop_back();

        file.get(c);
        if (c=='1'){
            blue_car b(i,j);
            if (v_col_temp[i].get_next() != nullptr)
                v_col_temp[i].insert_tail(&b);
            else
                v_col_temp[i].insert_head(&b);
        }
        if (c=='2'){
            red_car r(i,j);
            if (v_row[i].get_next() != nullptr)
                v_row[i].insert_tail(&r);
            else
                v_row[i].insert_head(&r);
        }
        if (c==',') {
            j++;
            if (i == 0)
                j_temp++;
        }
        if (c=='\n'){
            car p;
            v_row.push_back(p);
            v_col_temp.push_back(p);
            i++;
            if (j != j_temp) {
                std ::cout<<"errore input non valido: numero righe/colonne non coerente"<<endl;
            }
            j=0;
        }

        else if ((c!='\n') && (c!=',') && (c!='0') && (c!='1') && (c!='2'))
            std ::cout<<"errore input non valido"<<endl;
    };
    n_iter = k-1;
    M=i;
    N=j+1;

...

1 个答案:

答案 0 :(得分:0)

您的程序崩溃是因为您无法初始化iter向量的内容。

std::vector<int> iter; // location where I want to save the ints corresponding to the elements of the first row of the .csv file //

您声明并构造此向量。此时向量为空,它没有元素。

稍后某点:

iter[k] = atoi(iteraz.c_str());

k的初始值为0,因此会尝试将返回值从atoi()分配给iter[0]

问题是,当然没有iter[0]。此时iter向量仍为空。

其他评论,对于stackoverflow.com上至少50%的这类问题,这是令人遗憾的:

1)&#34;使用命名空间std&#34 ;;是a bad practice, that should be avoided

2)请勿使用您在问题中引用的system("pause") as well