gpt4 book ai didi

c++ - 遍历数组并找到最接近键的数组元素的最佳方法是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:13:22 30 4
gpt4 key购买 nike

到目前为止,这是我的代码,但我被卡住了。就绝对值而言,最接近 7 的值为 5。如何检查数组的每个元素以查看它是否是最接近的元素,然后返回该值。我知道这可能比我想象的要容易,但我是编程的初学者。

#include <iostream>
#include <cmath>
using namespace std;

const int MAX = 25;

int searchArray(int [], int); \\prototype

int main(){

int numArray[MAX] ={1,4,5,10,11,12,13,14,15,16,17,18,19,20,35,26,43,15,48,69,32,45,57,98,100};

searchArray(numArray, 7);
system("pause");
return 0;
}


int searchArray(int a[], int b){

int distance = 0;

for(int i=0;i<MAX;i++){
if(i==b)
return i;
else if(i<b || i > b)
abs(distance) == i-b;
return distance;


}

}

最佳答案

您可以使用 std::min_element作为:

#include <iostream>
#include <algorithm>
#include <cstdlib>

int main()
{
int numArray[] ={1,4,5,10,11,12,13,14,15,16,17,18,19,20,35,26,43,15,48,69,32,45,57,98,100};

//find nearest element to key
int key = 7;
auto cmp = [&](int a, int b) { return std::abs(key-a) < std::abs(key-b); };
int nearest_value = *std::min_element(std::begin(numArray),std::end(numArray),cmp);

std::cout << nearest_value << std::endl;
}

输出(demo):

5

关于c++ - 遍历数组并找到最接近键的数组元素的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14223463/

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