完成for_each

This commit is contained in:
邹晓航
2014-10-18 19:55:28 +08:00
parent 9822b8f75b
commit 4c2cf22402

View File

@@ -207,6 +207,14 @@ namespace TinySTL{
}
return true;
}
//********** [for_each] *************************
//********* [Algorithm Complexity: O(N)] ****************
template <class InputIterator, class Function>
Function for_each(InputIterator first, InputIterator last, Function fn){
for (; first != last; ++first)
fn(*first);
return fn;
}
}