码迷,mamicode.com
首页 > 其他好文 > 详细

STL 算法笔记

时间:2014-08-28 21:04:06      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   div   log   sp   amp   

 

 1 /*
 2 fill
 3     将[first, last) 内所有元素该填新值
 4 */
 5 template<class ForwardIterator last, class T>
 6 void fill (ForwardIterator first, ForwardIterator last, const T& value) {      
 7     for ( ; first != last; ++first)
 8         *first = value;
 9 }
10 
11 // 将矩阵第 i 行0到n置0
12 fill(&matrix[i][0], &matrix[i][0]+n, 0);

 

STL 算法笔记

标签:style   blog   color   ar   for   div   log   sp   amp   

原文地址:http://www.cnblogs.com/xiashu/p/3942334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!