解决方法
标准
std::exp2(double n)
Computes
2
raised to the given powern
在特定环境中,exp2(x)可能不会比pow(2.0,x)快,但它比一般pow更具体.
std::exp2(double n)
Computes
2
raised to the given powern
在特定环境中,exp2(x)可能不会比pow(2.0,x)快,但它比一般pow更具体.