Bit manipulation

本文介绍了位运算的基本操作,如AND、OR、XOR及位移等,并探讨了位运算在压缩、加密、低级设备控制等场景中的应用。通过具体的代码示例,展示了如何利用位运算进行集合操作,如并集、交集、补集等,帮助读者掌握位运算的实用技巧。

When should you use bitwise operators?


Bitwise operators are used forsaving more space orsaving some time. There are also times when you need to use bitwise operators: if you're working with compression or some forms of encryption, or if you're working on low-level device control, error detection and correction algorithms, data compression, encryption algorithms, and optimizationBit manipulation, in some cases,can obviate or reduce the need to loop over a data structure and can give many-fold speed upsbut the code can become rather more difficult to write and maintain. 

How many basic bitwise operations are there?


Source code that does bit manipulation usually makes use of the basic bitwise operations: AND, OR, XOR, NOT, and bit shifts
As a reminder, here are the  truth tables :
AND: 1 & 1 = 1, else are all 0
OR: 0 | 0 = 0, else are all 1
XOR: 1 ^ 0 = 0 ^ 1 = 1, else are 0 
NOT: !0 = 1, !0 = 1
Left Shifts: 0001 << 1 = 0010, general bit_arg<<shift_arg equivalent to multiplication by 2^shift_arg
Right Shifts: 0010 >> 1 = 0001, general bit_arg>>shift_arg equivalent to division by 2^shift_arg

Some useful operations when coding.


Set union: A | B
Set intersection: A & B
Set subtration: A & ~B
Set negation: ALL_BITS_ONE ^ A
Assign 2^bit to be 1: A |= 1<<bit
Assign 2^bit to be 0: A &= ~(1<<bit)
Check if 2^bit is 1: (A & 1<<bit) != 0

References:

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI记忆

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值