降低圈复杂度
Posted cutepig
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了降低圈复杂度相关的知识,希望对你有一定的参考价值。
降低圈复杂度
用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
以上是关于降低圈复杂度的主要内容,如果未能解决你的问题,请参考以下文章