Given an integer (signed 32 bits), write a function to check whether it is a power of 4.
Example:
Given num = 16, return true. Given num = 5, return false.
Follow up: Could you solve it without loops/recursion?
注意 0 1 这两个值
class Solution {
public:
bool isPowerOfFour(int num) {
if(num==0)return false;
if(num==1)return true;
if(num%4==0){
if(num==4)return true;
else{
return isPowerOfFour(num/4);
}
}else{
return false;
}
}
};
本文介绍了一个检查32位带符号整数是否为4的幂的方法。通过递归函数实现,若输入为16则返回真,若输入为5则返回假。文章还探讨了不使用循环或递归的解决方案。
744

被折叠的 条评论
为什么被折叠?



