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

降低圈复杂度

时间:2020-04-29 20:08:36      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:class   rdl   html   lan   com   pre   https   nsf   for loop   

降低圈复杂度

用functional的方式降低圈复杂度

用stl algorithm代替for loop

https://blog.csdn.net/YyoulingL/article/details/84515924

outs.map(|x| x.m).collect()

boost::copy( outs | transformed([](auto x){return x->m;}),std::back_inserter(mouts))

std::transform(outs.begin(), outs.end(), std::back_inserter(mouts), [](auto x){return x->m;})

降低圈复杂度

https://zhuanlan.zhihu.com/p/29438120

降低圈复杂度

标签:class   rdl   html   lan   com   pre   https   nsf   for loop   

原文地址:https://www.cnblogs.com/cutepig/p/12804206.html

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