c++ STL常用遍歷演算法
阿新 • • 發佈:2020-12-18
需要引入標頭檔案#include<algorithm>
1.for_each
#include<iostream> using namespace std; #include <vector> #include <algorithm> class MyPrint { public: void operator()(int val) const{ cout << val << " "; } }; void printVector(int val) { cout << val << " "; } void test() { vector<int> v1; for (int i = 0; i < 10; i++) { v1.push_back(i); } //利用普通函式 for_each(v1.begin(),v1.end(),printVector); cout << endl; //利用仿函式 for_each(v1.begin(),MyPrint()); cout << endl; } int main() { test(); system("pause"); return 0; }
2.transform:將容器搬運到另一個容器中
#include<iostream> using namespace std; #include <vector> #include <algorithm> class Transform { public: int operator()(int val) const{ //這裡可以對val進行一些判斷 return val; } }; class MyPrint { public: void operator()(int val) const { cout << val << " "; } }; void test() { vector<int> v1; for (int i = 0; i < 10; i++) { v1.push_back(i); } vector<int> v2; //目標容器需要先開闢空間 v2.resize(v1.size()); transform(v1.begin(),v2.begin(),Transform()); for_each(v2.begin(),v2.end(),MyPrint()); cout << endl; } int main() { test(); system("pause"); return 0; }
以上就是c++ STL常用遍歷演算法的詳細內容,更多關於c++ 遍歷演算法的資料請關注我們其它相關文章!