大家好,又见面了,我是你们的朋友全栈君。
对于如下图所示的数据文件:
274表示有274个点对,以下每一行代表一个点对,每一行的四个数从左到右依次是一个第一个点的x坐标、y坐标、第二个点的x坐标、y坐标,现在要把点对数和每个点对读取并存储,具体代码如下:
#include<iostream>
#include<sstream>
#include<fstream>
#include<string>
#include<vector>
#include<assert.h>
using namespace std;
struct Correspondence2D2D
{
double p1[2];
double p2[2];
};
typedef vector<Correspondence2D2D> Correspondences2D2D;
int main(){
Correspondences2D2D corr_all;
int n=0;
ifstream in("correspondences.txt");
assert(in.is_open());
string line, word;
int n_line = 0;
while(getline(in, line)){
stringstream stream(line); //等价于stringstream stream; stream<<line; 向流中传值
if(n_line==0){
int n_corrs = 0;
stream>> n_corrs; //将流中的值读取到n_corrs中
corr_all.resize(n_corrs);
cout<<"Total line is "<<n_corrs<<endl;
n_line ++;
continue;
}
if(n_line>0){
stream>>corr_all[n_line-1].p1[0]>>corr_all[n_line-1].p1[1]
>>corr_all[n_line-1].p2[0]>>corr_all[n_line-1].p2[1];
cout<<n_line<<" line is "<<corr_all[n_line-1].p1[0]<<" "<<corr_all[n_line-1].p1[1]<<" "
<<corr_all[n_line-1].p2[0]<<" "<<corr_all[n_line-1].p2[1]<<endl;
}
n_line++;
}
return 0;
}
运行结果如下:
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/136158.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...