沉淀、总结
Given an integer, write a function to determine if it is a power of two.
12345678
class Solution {public: bool isPowerOfTwo(int n) { if (n <= 0) return false; return !(n & (n - 1)); }};