c++如何在文件中读入特定数据并存入数组

如图,我想将具有小数点的数据读入到二维数组a[i][j]里,当读到字符“Center”时,i++;每读入一个具有小数点的数据,j++;有什么好的筛选方法吗,求代码... 如图,我想将具有小数点的数据读入到二维数组a[i][j]里,当读到字符“Center”时,i++;每读入一个具有小数点的数据,j++;有什么好的筛选方法吗 ,求代码 展开
 我来答
DoramiHe
2018-04-16 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25335 获赞数:59535
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
C++代码:
需要手动输入文件路径,以及文件中每一行有几列,读取额数据存入一个向量中,可视为二维数组。
#include <fstream>
#include <string>
#include <iostream>
#include <vector>
using namespace std;

int read_scanf(const string &filename,const int &cols,vector<double *> &_vector)
// 功能:将filename 中的数据(共cols列)读取到_vector中,_vector可视为二维数组
{
FILE *fp=fopen(filename.c_str(),"r");
bool flag=true;
int i=0;
if(!fp){ cout<<"File open error!\n"; return 0; }
while(flag)
{
double *point=new double[cols];
for(i=0;i<cols;i++) //读取数据,存在_vector[cols]中
{
if(EOF==fscanf(fp,"%lf",&point[i])){flag=false;break;};
if(EOF==fgetc(fp)){flag=false;i++;break;}
}
if(cols==i)_vector.push_back(point);
}
fclose(fp);
return 1;
}
void main()
{
string dir="E:/";
string file=dir+"test.txt";
//txt文件中有4列
int columns=4;
vector<double *> output_vector;
if(!read_scanf(file,columns,output_vector))return;
//output_vector可视为二维数组;输出数组元素:
int rows=output_vector.size();
for(int i=0;i<rows;i++)
{
for(int j=0;j<columns;j++){cout<<output_vector[i][j]<<" ";}
cout<<endl;
}

system("pause");
return;
}

验证:
E:/test.txt 内容(空格可换为逗号,分号等):
81.081 0.000 39.420 255
80.954 0.000 38.441 255
83.890 0.000 31.327 255
84.061 0.000 31.097 255
84.120 0.000 31.045 160
84.120 0.000 31.045 160
程序输出:
81.081 0 39.42 255
80.954 0 38.441 255
83.89 0 31.327 255
84.061 0 31.097 255
84.12 0 31.045 160
84.12 0 31.045 160
追问
问题是文件中还有一些不含小数点的数据,我要筛选出含有小数点的数据
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式