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

编写一个模块函数fill

时间:2017-08-30 14:21:01      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:art   end   star   val   const   pre   value   fill   code   

给数组a[start:end-1]赋值value。

官方答案:

template <class T>
void fill(T* a, int start, int end, const T& value)
{// Set a[start:end-1].
   for (int i = start; i < end; i++)
      a[i] = value;
}

 

编写一个模块函数fill

标签:art   end   star   val   const   pre   value   fill   code   

原文地址:http://www.cnblogs.com/drgon/p/7452648.html

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