sbool isPowerOf2(int n) { ret n > 0 && (n & (n - 1)) == 0; }