博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Write one line C function to find whether a no is power of two
阅读量:4151 次
发布时间:2019-05-25

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

reference: 

Problem Definition:

Write one line C function to find whether a no is power of two.

Solution:

If we subtract a power of 2 numbers by 1 then all unset bits after the only set bit become set; and the set bit become unset.

For example for 4 ( 100) and 16(10000), we get following after subtracting 1

3 –> 011
15 –> 01111

So, if a number n is a power of 2 then bitwise & of n and n-1 will be zero. We can say n is a power of 2 or not based on value of n&(n-1).The expression n&(n-1) will not work when n is 0. To handle this case also, our expression will become n& (!n&(n-1)).

Code:

/* Function to check if x is power of 2*/bool isPowerOfTwo (int x){  /* First x in the below expression is for the case when x is 0 */  return x && (!(x&(x-1)));}

转载地址:http://yexti.baihongyu.com/

你可能感兴趣的文章
OpenLDAP for Windows 安装手册(2.4.26版)
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
JSP的内置对象及方法
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Spring MVC和Struts2的比较
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
Commit our mod to our own repo server
查看>>
LOCAL_PRELINK_MODULE和prelink-linux-arm.map
查看>>
Simple Guide to use the gdb tool in Android environment
查看>>
Netconsole to capture the log
查看>>
Build GingerBread on 32 bit machine.
查看>>
How to make SD Card world wide writable
查看>>
Detecting Memory Leaks in Kernel
查看>>
Linux initial RAM disk (initrd) overview
查看>>