C语言先开辟一个二位数组的内存,再通过指针的传递用子函数为其赋值
static float pRefImg[5][5];从旋转后的图像中挖取匹配的基准图
static float(*temp_pRefImg)[5] = pRefImg;
int main()
{
re(temp_pRefImg, 5);
for (int i = 0; i < 5; i++)
{
for (int j = 0; j < 5; j++)
{
printf("--%f", pRefImg[i][j]);
}
}
system("pause");
}
//调用函数
void re(float (*input)[5], int num)
{
for (int a = 0; a < 5; a++)
{
for (int b = 0; b < num; b++)
{
*(*(input+a)+b) = 1.0;
}
}
}
时间复杂度是指计算操作数量,而不是绝对的运行时间