c++中STL的常用算法---2(遍历算法,查找算法)
生活随笔
收集整理的這篇文章主要介紹了
c++中STL的常用算法---2(遍历算法,查找算法)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
算法概述
遍歷算法
for_each()
for_each基礎遍歷
#include<iostream>using namespace std; #include<vector> #include<algorithm> #include<functional> //回調函數 //void myPrint(int v) //{ // cout << v << endl; //}//仿函數 struct myPrint01 { public:void operator()(int v){cout << v << endl;} };void test01() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}for_each(v.begin(), v.end(), myPrint01());}for_each可以保存內部記錄,有返回值
struct myPrint02 { public:void operator()(int v){cout << v << endl;this->m_Count++;}int m_Count; }; void test02() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}myPrint02 print2 = for_each(v.begin(), v.end(), myPrint02());cout << print2.m_Count << endl; }for_each可以綁定參數進行輸出
struct myPrint03:public binary_function <int,int,void> { public:void operator()(int v,int start) const{cout << v+start << endl;} };void test03() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}for_each(v.begin(), v.end(), bind2nd(myPrint03(), 10000)); }transform()
transform基礎遍歷
class TransForm { public:int operator()(int val){return val+10;} }; void test04() {vector<int>v; //原容器for (int i = 0; i < 10; i++){v.push_back(i);}vector<int>vTarget; //目標容器vTarget.resize(v.size());//開辟空間transform(v.begin(), v.end(), vTarget.begin(), TransForm());for_each(vTarget.begin(), vTarget.end(), [](int val){cout << val << endl; }); }transform第二種用法,把兩個容器搬到第三個容器中
class TransForm2 { public:int operator()(int val,int val2){return val + val2;} };void test05() {vector<int>v1;vector<int>v2;for (int i = 0; i < 10; i++){v1.push_back(100 + i);v2.push_back(200 + i);}vector<int>vTarget;//目標容器vTarget.resize(v1.size());//提供空間transform(v1.begin(), v1.end(), v2.begin(), vTarget.begin(), TransForm2());for_each(vTarget.begin(), vTarget.end(), [](int val){cout << val << endl; }); }查找算法
adjacent_find()
在 iterator 對標識元素范圍內,查找一對相鄰重復元素,找到則返回指向這對元素的第 一個元素的迭代器。否則返回 past-the-end。
void test04() {vector<int>v;v.push_back(2);v.push_back(3);v.push_back(4);v.push_back(5);v.push_back(5);v.push_back(6);v.push_back(2);vector<int>::iterator pos=adjacent_find(v.begin(), v.end());if (pos != v.end()){cout << "找到了相鄰元素" << *pos << endl;}else{cout << "未找到" << endl;} }binary_search
在有序序列中查找 value,找到則返回 true。注意:在無序序列中,不可使用。
void test05() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}bool ret=binary_search(v.begin(), v.end(), 4);if (ret){cout << "找到了" << endl;}else{cout << "未找到" << endl;} }count()
利用等于操作符,把標志范圍內的元素與輸入值比較,返回相等的個數。
count_if()
按條件進行比較
class GreateThenFour { public:bool operator()(int v){return v >=4;} }; void test06() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}v.push_back(4);v.push_back(4);v.push_back(4);v.push_back(4);int num=count(v.begin(), v.end(), 4);cout << "4的個數為:" << num << endl;num =count_if(v.begin(), v.end(), GreateThenFour());cout << "大于等于4的個數為:" << num << endl; }find()
find: 利用底層元素的等于操作符,對指定范圍內的元素與輸入值進行比較。當匹 配時,結束搜索,返回該元素的迭代器。
equal_range: 返 回 一 對 iterator , 第 一 個 表 示 lower_bound, 第 二 個 表 示 upper_bound。
void test01() {vector<int>v;for (int i = 0; i < 10; i++){v.push_back(i);}find(v.begin(), v.end(), 5);//查找這個容器中有沒有5vector<int>::iterator pos = find(v.begin(), v.end(), 5);if (pos != v.end()){cout << "找到了數據:" << *pos << endl;}else{cout << "沒找到" << endl;} }利用find查找自定義數據類型
class Person { public:Person(string name, int age){this->m_Name = name;this->m_Age = age;}bool operator==(const Person&p){if (this->m_Name ==p.m_Name&&this->m_Age == p.m_Age){return true;}return false;}string m_Name;int m_Age; }; void test02() {vector<Person>v;Person p1("aaa", 10);Person p2("bbb", 20);Person p3("ccc", 30);Person p4("ddd", 40);v.push_back(p1);v.push_back(p2);v.push_back(p3);v.push_back(p4);vector<Person>::iterator pos= find(v.begin(), v.end(), p2);if (pos != v.end()){cout << "找到了數據姓名:" << (*pos).m_Name<<"年齡:"<<pos->m_Age << endl;}else{cout << "沒找到" << endl;} }find_if()
find_if: 使用輸入的函數代替等于操作符執行 find。返回被找到的元素的迭代器。 假設 vectorvecIntA,vecIntA 包含 1,3,5,3,9 元素
//find_if class MyCompare:public binary_function<Person*,Person*,bool> { public:bool operator ()(Person *p1,Person *p2)const{if (p1->m_Name==p2->m_Name&&p1->m_Age==p2->m_Age){return true;}return false;} }; void test03() {vector<Person *>v;Person p1("aaa", 10);Person p2("bbb", 20);Person p3("ccc", 30);Person p4("ddd", 40);v.push_back(&p1);v.push_back(&p2);v.push_back(&p3);v.push_back(&p4);Person *p = new Person("bbb", 21);vector<Person *>::iterator pos= find_if(v.begin(), v.end(),bind2nd(MyCompare(),p));if (pos != v.end()){cout << "找到了數據姓名:" << (*pos)->m_Name << "年齡:" << (*pos)->m_Age << endl;}else{cout << "沒找到" << endl;} }總結
以上是生活随笔為你收集整理的c++中STL的常用算法---2(遍历算法,查找算法)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 这次的活动比以往 策多了许多 有搞
- 下一篇: DNF68红眼与70红眼刷真野猪伤害会不