gpt4 book ai didi

c++ "no matching function error"返回二维数组

转载 作者:行者123 更新时间:2023-11-28 02:41:16 25 4
gpt4 key购买 nike

我是 C++ 的新手,可以肯定错误出在我传递给函数的变量中。本质上,我在 double_arrays.cpp 文件中定义了两个函数——第一个是确定两个 vector 之间的欧几里德距离(作为具有 10 个值的数组传入,这个函数效果很好)。另一个 (closestPair) 是找出哪两个 vector (同样,每个 vector 被定义为具有 10 个值的数组)距离最近。当我在我的“main.cpp”文件中调用此函数时,出现“没有名为 closestPair 的匹配函数”错误。

我相当确定错误要么出在我传递给函数的值中,要么出在我试图返回它的方式中(通过将值打印到控制台)。

免责声明 - 这是一项任务 :),因此非常欢迎提供解决方案的提示!

这是我的文件:

main.cpp :

#include <iostream>
#include "double_arrays.h"

int main(int argc, const char * argv[])
{

//Define test values to test vectDistance
double first[10] = {
0.595500, 0.652927, 0.606763, 0.162761, 0.980752, 0.964772, 0.319322, 0.611325, 0.012422, 0.393489
};
double second[10] = {
0.416132, 0.778858, 0.909609, 0.094812, 0.380586, 0.512309, 0.638184, 0.753504, 0.465674, 0.674607
};

//call vectDistance with test values, should equal 1.056238

std::cout << "Euclidian distance is " << vectDistance(first, second) << std::endl;
std::cout << "Should equal ~1.056238" << std::endl;

//Define test values for closestPair

double a[10] = {
0.183963, 0.933146, 0.476773, 0.086125, 0.566566, 0.728107, 0.837345, 0.885175, 0.600559, 0.142238
};
double b[10] = {
0.086523, 0.025236, 0.252289, 0.089437, 0.382081, 0.420934, 0.038498, 0.626125, 0.468158, 0.247754
};
double c[10] = {
0.969345, 0.127753, 0.736213, 0.264992, 0.518971, 0.216767, 0.390992, 0.242241, 0.516135, 0.990155
};

//create 2D array to send to closestPair

double** test = new double*[3];
test[0] = a;
test[1] = b;
test[2] = c;

//output the values of the two vectors which are closest, in Euclidian distance
std::cout << closestPair(test) << std::endl;

return 0;
}

双数组.cpp :

#include "double_arrays.h"
#include <iostream>
#include <vector>
#include <math.h>

double vectDistance( double first[], double second[]) {
int i = 0;
double distance = 0.0;
for (int j = 0; j < 10; ++j) {
distance += pow((first[j] - second[i]), 2);
++i;
}
return distance = pow(distance, 0.5);
}

double** closestPair(double arrays[][10]) {
double** closest = new double*[2];
closest[0] = new double[10];
closest[0] = arrays[0];
closest[1] = new double[10];
closest[1] = arrays[1];


double minDistance = vectDistance(arrays[0], arrays[1]);

for (int i = 0; i < 9; ++i){
for (int j = i + 1; j < 10; ++j) {
if (vectDistance(arrays[i], arrays[j]) < minDistance) {
minDistance = vectDistance(arrays[i], arrays[j]);
closest[0] = arrays[i];
closest[1] = arrays[j];
}
}
}

return closest;
}

最后是头文件 header.h:

#ifndef double_arrays_double_arrays_h
#define double_arrays_double_arrays_h

double vectDistance( double first[], double second[]);
double** closestPair(double arrays[][10]);

#endif

最佳答案

类型double**closestPair 的参数类型不兼容。

closestPair 的有效参数:

const int N = 20;
double arrays[N][10]; // Can use array to call closestPair

const int N = 20;
double (*arrays)[10] = new double[N][10]; // Can use array to call closestPair

关于c++ "no matching function error"返回二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25917261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com