C++中vector的使用
1. c++ Vector中的获取最大元素
#include<vector>
vector<int>v1;
......
int v1_max = *max_element(v1.begin(),v1.end());
使用vector中的max_element
(a,b)函数,可返回向量[a,b]区间内的最大元素的地址。做 * 后可得到相应的元素值。
当需要得到某一区间内的最大值时[a,b)
,参数为地址类型。如:v1_max = * max_element(&v1[a],&v1[b])
;(此处区间为前闭后开
!)
2. C++求vector容器中的最大值(最小值)及其位置
方法:
min_element
和max_element
输入参数为vector
迭代器,输出为单一元素迭代器
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
vector<int> a = { 2,4,6,7,1,0,8,9,6,3,2 };
auto maxPosition = max_element(a.begin(), a.end());
auto minPosition = min_element(a.begin(), a.end());
cout << *maxPosition << " at the postion of " << maxPosition - a.begin() <<endl;
cout << *minPosition << " at the postion of " << maxPosition - a.begin() <<endl;
system("pause");
return 0;
}