本文介绍了获取所有大于某个值的 stl 向量元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何找到具有验证特定条件的值的 stl 向量元素列表.例如,如果我有一个 int 值向量
I would like to know how can I find the list of a stl vector elements that have value verifying a certain condition. For example if I have a vector of int values
vector<int> V;
并且我想获取所有大于 5 的元素.
and I want to get all the elements that are greater than 5.
提前致谢.
推荐答案
如果值:
std::vector<int> target;
std::copy_if(v.begin(), v.end(), std::back_inserter(target),
std::bind(std::less<int>(), 5, _1));
这篇关于获取所有大于某个值的 stl 向量元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!