首页 > 其他 > 详细

Leetcode: Power of Four

时间:2016-11-23 12:48:49      阅读:239      评论:0      收藏:0      [点我收藏+]
1 Given an integer (signed 32 bits), write a function to check whether it is a power of 4.
2 
3 Example:
4 Given num = 16, return true. Given num = 5, return false.
5 
6 Follow up: Could you solve it without loops/recursion?

it‘s easy to find that power of 4 numbers have those 3 common features.

First,greater than 0.

Second,only have one ‘1‘ bit in their binary notation,so we use x&(x-1) to delete the lowest ‘1‘,and if then it becomes 0,it prove that there is only one ‘1‘ bit.

Third,the only ‘1‘ bit should be locate at the odd location,for example,16.It‘s binary is 00010000.So we can use ‘0x55555555‘ to check if the ‘1‘ bit is in the right place.With this thought we can code it out easily!

1 public class Solution {
2     public boolean isPowerOfFour(int num) {
3         return (num>0) && ((num & (num-1))==0) && ((num & 0x55555555)!=0);
4     }
5 }

 

Leetcode: Power of Four

原文:http://www.cnblogs.com/EdwardLiu/p/6093073.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!