vector如何找到最大值
时间: 2023-07-26 19:49:17 浏览: 272
求矩阵的最大值和最大值对应的特征向量
如果你是指 C++ 中的 std::vector,可以使用 std::max_element 函数来找到最大值。用法如下:
```c++
#include <vector>
#include <algorithm>
int main() {
std::vector<int> vec{1, 2, 3, 4, 5};
auto it = std::max_element(vec.begin(), vec.end()); // 找到最大值的迭代器
int max_val = *it; // 最大值
return 0;
}
```
如果你是指其他语言的 vector,可以查看对应语言的标准库或者自行实现查找最大值的算法。
阅读全文