我有以下形式的一组数据:
a1 b1 c1 d1
a2 b2 c2 d2
...
an bn cn dn
我的目标是找到 c 列具有最小值的行。
我做了以下事情:
const int limit=100000;
float Array[limit][4];
int main() {
double a, b, c, d, smallest, ref1, ref2;
ifstream in("data.dat");
int idx=-1, point;
while(!in.eof()) {
idx++;
in >> a >> b >> c >> d;
Array[idx][0]=a; Array[idx][1]=b; Array[idx][2]=c; Array[idx][3]=d;
} \\end of while
in.close();
int count=idx;
for(int i=1; i<count; i++) {
ref1= Array[0][2];
ref2 = Array[i][2];
if(ref2 < ref1) {ref1 = ref2; point=i;} //I thought this will save the smallest value
smallest = ref1; point= i;
} \\end for
cout << "point" << Array[point][0] << Array[point][1] << .. etc.
return 0;
}
但是,输出是数据中的最后一个点。(在输入这个问题时,我意识到 ref1 在读取新行时将始终是 Array[0][2]。所以现在我完全迷路了!)
如何将一个点保存为参考点,以便将其与其余数据进行比较,并且每次与较小的点进行比较时,它都会更改为较小的值?
更新:我通过 ref1=Array[0][2]; 解决了这个问题 出for循环。