91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

STL算法使用之std::find,std::find_i

發布時間:2020-06-29 12:27:03 來源:網絡 閱讀:849 作者:googlingman 欄目:開發技術

STL的find,find_if函數提供了一種對數組、STL容器進行查找的方法。使用該函數,需 #include <algorithm>

find示例一

我們查找一個list中的數據,通常用find(),例如:

using namespace std;
 
int main()
{
list<int> lst;
lst.push_back(10);
lst.push_back(20);
lst.push_back(30);
 
list<int>::iterator it = find(lst.begin(), lst.end(), 10); // 查找list中是否有元素“10”
if (it != lst.end()) // 找到了
{
// do something 
}
else // 沒找到
{
// do something
}
 
return 0;
}

find示例二

 那么,如果容器里的元素是一個類呢?例如,有list<CPerson> ,其中CPerson類定義如下:

class CPerson
{
public:
CPerson(void); ~CPerson(void);
 
public:
int age; // 年齡
};

那么如何用find()函數進行查找呢?這時,我們需要提供一個判斷兩個CPerson對象“相等”的定義,find()函數才能從一個list中找到與指定的CPerson“相等”的元素。

這個“相等”的定義,是通過重載“==”操作符實現的,我們在CPerson類中添加一個方法,定義為:

bool perator==(const CPerson &rhs) const;
 
實現為:
 bool CPerson::operator==(const CPerson &rhs) const
{
return (id == rhs.age);
}
然后我們就可以這樣查找(假設list中已經有了若干CPerson對象)了:
list<CPerson> lst;
//////////////////////////////////
// 向lst中添加元素,此處省略
//////////////////////////////////
CPerson cp_to_find; // 要查找的對象
cp_to_find.age = 50;
list<CPerson>::iterator it = find(list.begin(), list.end(), cp_to_find); // 查找
if (it != lst.end()) // 找到了
{
// do something 
}
else // 沒找到
{
// do something
}

find_if函數示例

 有人說,如果我有自己定義的“相等”呢?例如,有一個list<CPerson*>,這個list中的每一個元素都是一個對象的指針,我們要在這個list中查找具有指定age的元素,找到的話就得到對象的指針。

這時候,你不再能像上面的例子那樣做,我們需要用到find_if函數,并自己指定predicate function(即find_if函數的第三個參數,請查閱STL手冊)。

  我們在CPerson類外部定義這樣一個結構體:

typedef struct finder_t
{
	finder_t(int n)
		: age(n)
	{
	}
	bool operator()(CPerson *p)
	{
		return (age == p->age);
	}
	int	age;
}finder_t;

然后就可以利用find_if函數來查找了:

list<CPerson*> lst;//////////////////////////////////// 向lst中添加元素,此處省略//////////////////////////////////list<CPerson*>::iterator it = find_if(lst.begin(), lst.end(), finder_t(50));	// 查找年齡為50的人if (it != lst.end())	// 找到了{cout << "Found person with age : " << (*it)->age;}else	// 沒找到{	// do something
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广南县| 永宁县| 利津县| 岗巴县| 苍南县| 泉州市| 温州市| 柳林县| 积石山| 宁安市| 房产| 凤冈县| 菏泽市| 尉氏县| 高雄市| 宜宾县| 如皋市| 泸定县| 绥芬河市| 景东| 招远市| 西林县| 高尔夫| 安达市| 奉新县| 浠水县| 许昌县| 会东县| 毕节市| 石门县| 桃源县| 宁阳县| 柘荣县| 乌兰察布市| 汉源县| 光山县| 罗源县| 调兵山市| 星座| 离岛区| 湘潭市|