gpt4 book ai didi

c++ - 将 C++ .Count() 与 float 的 max 函数一起使用

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

我正在尝试在内部创建一个带有 max 函数的 .Count,以从 float 类型中获取最大值的次数。从 MSDN 我不明白如何制作它。有什么想法吗?

最佳答案

类似的东西? (也许不是,很难理解这个问题)

int count(std::vector<float> &data) {
if ( data.empty() ) return -1;
float maxval = data[0];
int maxnum = 0;
for ( std::vector<float>::iterator it = data.begin()+1; it != data.end(); ++it ) {
if ( equal(*it, maxval) ) {
maxnum += 1;
} else if ( *it > maxval ) {
maxval = *it;
maxnum = 0;
}
}
return maxnum;
}

equal(a, b) 检查是否 |a - b| <= epsilon

关于c++ - 将 C++ .Count() 与 float 的 max 函数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16808460/

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