2 的幂⚓︎ Leetcode题目链接 描述⚓︎ 详见中文题目链接。 解答⚓︎ 1 2 3 4 5 6 7class Solution { public: bool isPowerOfTwo(int n) { if (n <= 0) return false; return (n & (n - 1)) == 0; } };