亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

萍乡市| 东明县| 鄄城县| 曲阳县| 睢宁县| 龙口市| 怀柔区| 精河县| 衡阳县| 肥城市| 于田县| 天门市| 格尔木市| 贵州省| 全州县| 长乐市| 莫力| 锦州市| 罗山县| 肃北| 揭东县| 河间市| 钦州市| 阆中市| 渭源县| 阿瓦提县| 抚州市| 巨野县| 鄂州市| 大冶市| 淮阳县| 水城县| 江永县| 进贤县| 怀仁县| 杂多县| 简阳市| 慈溪市| 宽城| 莱芜市| 伊宁市|