zoukankan      html  css  js  c++  java
  • Java实现 LeetCode 342 4的幂

    342. 4的幂

    给定一个整数 (32 位有符号整数),请编写一个函数来判断它是否是 4 的幂次方。

    示例 1:

    输入: 16
    输出: true
    示例 2:

    输入: 5
    输出: false
    进阶:
    你能不使用循环或者递归来完成本题吗?

    class Solution { 
     public boolean isPowerOfFour(int num) { 
            int x = 0x55555555;
            return (num > 0)&&((num&(num-1))==0)&((num&x) == num);
        }
        
    } 
    
  • 相关阅读:
    几数之和的题目
    File类
    递归
    Collections
    Map集合
    泛型
    类型通配符
    可变参数
    异常
    Collection集合
  • 原文地址:https://www.cnblogs.com/a1439775520/p/13075204.html
Copyright © 2011-2022 走看看