C 中的常用遍歷演算法

2021-10-25 15:32:50 字數 824 閱讀 5104

功能描述:

實現遍歷容器

函式原型;

for_each

(iterator beg, iterator end,_func)

;

// 遍歷演算法遍歷容器元素

// beg開始迭代器

// end結束迭代器

// _func函式或者函式物件

#include

#include

#include

using

namespace std;

//常用遍歷演算法 for_each

// 普通函式

void

print01

(int val)

// 仿函式

總結: for_each在實際開發中是最常用遍歷演算法,糖要熟練掌握

常用的遍歷演算法

概述 演算法簡介 功能描述 函式原型 示例 includeusing namespace std include include 普通函式 void print01 int val 函式物件 class print02 for each演算法基本用法 void test01 遍歷演算法 功能描述 函...

常用的遍歷演算法

transform b1,e1,b2,op 把乙個區間 b1,e1 內的資料經過 op 轉化,放入以b2開頭的第二個容器內 也就是複製 修改 變換 當然b2可以等於b1 transform b1,e1,b2,b3,op 把兩個集合裡的資料整合 op 到第三個集合,當然b3 b2 b1也可以 注意 1...

78 C 常用遍歷演算法 transform

2.transform 搬運容器到另乙個容器中 功能描述 搬運容器到另乙個容器中 函式原型 transform iterator beg1,iterator end1,iterator beg2,func beg1源容器開始迭代器 end1源容器結束迭代器 beg2目標容器開始迭代器 func函式或...