STL
reds1892
这个作者很懒,什么都没留下…
展开
-
c++ primer (第10章 泛型算法) 算法
#include#include#include#include#include#include#includeusing namespace std;int main(){ vector v1 = { 1, 3, 5, 7, 9, }; vector vs = { "aaa", "bbb", "ccc", "ddd", "eee" };//只读算法,只读取而不改变元原创 2014-09-26 21:54:41 · 331 阅读 · 0 评论 -
C++中使用copy和ostream_iterator来输出map的内容
对于copy配合iterator来输出一些容器的便利性是非常喜欢的,但是copy在处理map容器的时候,很容易导致编译出错,问题代码如下: 1 ostream& operator out, const pairconst int,int>& value) 2 { 3 out 4 return out; 5 } 6 int main() 7 { 8转载 2014-09-29 22:17:36 · 861 阅读 · 0 评论