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

【LeetCode】231 - Power of Two

时间:2015-07-28 00:42:12      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

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

Solution:一个整数如果是2的整数次方,那么它的二进制表示中有且只有一位是1,而其他所有位都是0。把这个整数与这个整数减去1之后进行与运算,那么这个整数当中唯一的1会变为0,这个整数也变为0

1 class Solution {
2 public:
3     bool isPowerOfTwo(int n) {
4         if(n<=0)return false;
5         return !(n&(n-1));
6     }
7 };

 

【LeetCode】231 - Power of Two

标签:

原文地址:http://www.cnblogs.com/irun/p/4681528.html

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