博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LintCode] O(1)检测2的幂次
阅读量:6808 次
发布时间:2019-06-26

本文共 293 字,大约阅读时间需要 1 分钟。

1 class Solution { 2 public: 3     /* 4      * @param n: An integer 5      * @return: True or false 6      */ 7     bool checkPowerOf2(int n) { 8         // write your code here 9         return n > 0 && ((n & (n - 1)) == 0);10     }11 };

 

转载于:https://www.cnblogs.com/jcliBlogger/p/4612213.html

你可能感兴趣的文章
VBA7种遍历方法
查看>>
python编码问题
查看>>
SDOI2015 序列统计
查看>>
获取第几周
查看>>
矩形覆盖
查看>>
VS2010 配置PCL1.6.0AII in one 无法启动程序ALL_BUILD
查看>>
用python写MapReduce函数——以WordCount为例
查看>>
【好文翻译】10个免费的压力测试工具(Web)
查看>>
mysql 新建用户并赋予远程访问权限
查看>>
WPF_在APP.xaml应用资源样式
查看>>
AX2012 R3 Data upgrade checklist sync database step, failed to create a session;
查看>>
初次使用Eclipse,坑一二
查看>>
[c++] polymorphism without virtual function
查看>>
Effective_STL 学习笔记(十六) 如何将 vector 和 string 的数据传给遗留的API
查看>>
android定位问题
查看>>
hdu-1242 dfs+各种剪枝
查看>>
Sql Server 分区之后增加新的分区
查看>>
C语言基础第三次作业
查看>>
ML | Naive Bayes
查看>>
javascript:正则表达式、一个表单验证的例子
查看>>