博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Power of Two
阅读量:6076 次
发布时间:2019-06-20

本文共 1378 字,大约阅读时间需要 4 分钟。

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

Best Solution

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

 

 

还是有一个地方不小心:Integer.MIN_VALUE, 应该是false,但是因为只有一个1,我曾经判断为true。事实上,所有negative value都应该是false

 一旦符号位为1,就return false, 检查其他位只有1个1

1 public class Solution { 2     public boolean isPowerOfTwo(int n) { 3         boolean flag = false; 4         for (int i=0; i<=30; i++) { 5             if (((n>>>i) & 1) == 1) { 6                 if (!flag) flag = true; 7                 else return false; 8             } 9         }10         if (((n>>>31) & 1) == 1) return false;11         return flag;12     }13 }

 

 做的时候遇到很多语法错误:

1. “==” 优先级 比 “&” 高, “&”表达式一定要括起来

2. >>是带符号的右移,如果是负数,高位始终补1. >>>才是无符号的右移

这样也可以,先确认除开符号位的31位只有一个1,然后确认符号位不为1,注意一定要无符号右移,或者写成 ((n>>31)&1) != 1

更好的方法:单独考虑符号位,一旦为1,return false

1 public class Solution { 2     public boolean isPowerOfTwo(int n) { 3         boolean one = false; 4         for (int i=0; i<31; i++) { 5             if (((n>>i) & 1) == 1) { 6                 if (!one)  7                     one=true; 8                 else return false;  9             }10         }11         return one && (n>>>31)!=1; 12     }13 }

 

转载地址:http://nmxgx.baihongyu.com/

你可能感兴趣的文章
ShadowGun 图形技术分析
查看>>
C语言运算符优先级 详细列表 <转>
查看>>
返回结点值为e的二叉树指针
查看>>
*栈的应用
查看>>
jar文件运行打断点
查看>>
DHTML 简介
查看>>
linux变量
查看>>
arcgis jsapi接口入门系列(5):几何(点线面)基本操作
查看>>
Java泛型中的通配符
查看>>
《傅雷家书》- 读书有感
查看>>
Java探索之旅(16)——异常处理
查看>>
查找窗口句柄小工具-Spy++Lite
查看>>
Netty-gRPC介绍和使用
查看>>
iOS 导航色差问题解决方案
查看>>
SpringBoot的优点
查看>>
POJ 2886 线段树 反素数
查看>>
js_对象
查看>>
SQL Server错误提示:"选定的用户拥有对象,所以无法除去该用户"
查看>>
centos6/7安装 tinyproxy (yum安装)
查看>>
简单选择排序
查看>>