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

leetcode_231题——Power of Two (位运算)

时间:2015-07-19 17:42:22      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

Power of Two

 Total Accepted: 11027 Total Submissions: 36750My Submissions

 

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.

 

Hide Tags
 Math Bit Manipulation
Hide Similar Problems
 (E) Number of 1 Bits
Have you met this question in a real interview? 
Yes
 
No
 

Discuss

 

      这道题是计算一个数是否是2的次方数,其实可以转化为计算这个数的二进制位上有多少个1,就可以了,儿这个可以采用位运算的方法,即用一个数n和n-1位与运算,就可以去掉一个1了,

      在这里需要注意的是负数一定不是2的次方。

#include<iostream>
using namespace std;


bool isPowerOfTwo(int n) {
	if(n<0)
		return 0;
	int re=0;
	while(n)
	{
		re++;
		n=n&(n-1);
	}
	if(re==1)
		return 1;
	else
		return 0;
}
int main()
{
	cout<<isPowerOfTwo(6)<<endl;
}

  

leetcode_231题——Power of Two (位运算)

标签:

原文地址:http://www.cnblogs.com/yanliang12138/p/4658918.html

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