码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode OJ:Power of Two(2的幂)

时间:2015-11-18 21:10:43      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

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

看一个数是不是2的幂,代码如下:

 1 class Solution {
 2 public:
 3     bool isPowerOfTwo(int n) {
 4         if(n<=0) return false;
 5         bool isPower = false;
 6         for(int i = 1; i < n; i<<=1){
 7             if(!isPower && (i&n))
 8                 isPower = true;
 9             else if(isPower && (i&n)){
10                 return false;
11             }
12         }      
13         return true;
14     }
15 };

 

LeetCode OJ:Power of Two(2的幂)

标签:

原文地址:http://www.cnblogs.com/-wang-cheng/p/4975637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!