C++ STL算法系列2---find ,find_first_of , find_if , adjacent_find的使用
摘要:
一.find运算假设有一个int型的vector对象,名为vec,我们想知道其中是否包含某个特定值。解决这个问题最简单的方法时使用标准库提供的find运算: 1 // value we'll look for 2 int search_value = 42; 3 4 //call find to ... 阅读全文
posted @ 2015-07-02 16:19 Ctrl+A 阅读(168) 评论(0) 推荐(0) 编辑