231 power of two 2017-11-20 本文已影响0人 larrymusk power of two 只有一个比特 bool isPowerOfTwo(int n) { return n>0 && !(n&(n-1)); }