🌈 搜索
📅  最后修改于: 2022-03-11 14:44:49.920000             🧑  作者: Mango
bool IsPowerOfTwo(int x) { return x && ((x & (x - 1)) == 0); }