程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> (LeetCode OJ) Power of Two【231】

(LeetCode OJ) Power of Two【231】

編輯:C++入門知識

(LeetCode OJ) Power of Two【231】


231. Power of Two

My SubmissionsTotal Accepted: 43958 Total Submissions: 131591 Difficulty: Easy

Given an integer, write a function to determine if it is a power of two.

Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

Hide Tags Math Bit Manipulation Hide Similar Problems (E) Number of 1 Bits
//思路首先:如果一個數是2的某個次方,那麼他一定不會小於等於0(最多無限接近0)
//如果n是2的某個次方,那麼他的二進制形式一定是10000......這樣的形式
//並且n-1的二進制形式一定是01111....,進行與運算一定是false
class Solution {
public:
    bool isPowerOfTwo(int n) {
        if(n <= 0)
            return false;
        if(n&n-1)
            return false;
        else
            return true;
    }
};

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved