摘要:
非变异算法非变异算法就是:不直接改变其操作的数据结构的元素1,循环: for_eachtemplate<class Init,class Fun>Fun for_each(Init first,Init last, Fun f);f 为全局函数或者一元函数example:::1> 1 #include <iostream> 2 #include <vector> 3 #include <algorithm> 4 5 using namespace std; 6 7 void PrintCube(int n) 8 { 9 cout <& 阅读全文