首页 > 其他 > 详细

编写一个模块函数fill

时间:2017-08-30 13:46:21      阅读:328      评论:0      收藏:0      [点我收藏+]

给数组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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!