logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

C++中for循环遍历容器

基于范围的for循环#include <iostream>#include <algorithm>  #include <vector>  using namespace std;vector<int> my_array = { 1, 2, 3, 4, 5 };方式一:原始方法for (

C++中min_element()与max_element()(取容器中的最大最小值)

min_element 和 max_element头文件:#include<algorithm>作用:返回容器中最小值和最大值的指针。max_element(first,end,cmp);其中cmp为可选择参数!例1#include<iostream>#include<algorithm>using namespa

C++中min_element()与max_element()(取容器中的最大最小值)

min_element 和 max_element头文件:#include<algorithm>作用:返回容器中最小值和最大值的指针。max_element(first,end,cmp);其中cmp为可选择参数!例1#include<iostream>#include<algorithm>using namespa

到底了