目录
题目
Given an integer, write a function to determine if it is a power of two.
解决方案
1 | public class Solution { |
注意事项
- 先处理特殊情况。
- 将n转换为double型,不断除以2,直到结果小于1.0.此时根据n1的结果即可确定。
Given an integer, write a function to determine if it is a power of two.
1 | public class Solution { |