首页 > 代码库 > Leetcode: Power of Four
Leetcode: Power of Four
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。