c_cpp C ++查找MinMax和向量索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C ++查找MinMax和向量索引相关的知识,希望对你有一定的参考价值。

#include <algorithm>
#include <vector>

vector<double> v;

vector<double>::iterator it = min_element(v.begin(), v.end());
int minIndex = it - v.begin();
double minValue = *it;

// The above is slower (about twice as slow) than the following though:
for(int i=0; i<v.size(); i++) {
  if(minValue>v[i]) {
    minValue = v[i];
    minIndex = i;
  }
}

以上是关于c_cpp C ++查找MinMax和向量索引的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 【76】查找和绘制图片轮廓矩

c_cpp 查找关节点和桥梁(未定向)

c_cpp 查找链接列表的长度(迭代和递归)

c_cpp 查找int值的数组大小和大小。

c_cpp BST查找最小值和最大值

c/c++编译htslib