Skip to content

Instantly share code, notes, and snippets.

@Coding-Enthusiast
Last active May 4, 2023 06:08
Show Gist options
  • Star 32 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save Coding-Enthusiast/65b0be1b3dc0bdf19222f6b90bf3a7ed to your computer and use it in GitHub Desktop.
Save Coding-Enthusiast/65b0be1b3dc0bdf19222f6b90bf3a7ed to your computer and use it in GitHub Desktop.
Bitwise operations cheat sheet

AND (&)

100  
101  
---  
100  

OR (|)

100  
101  
---  
101  

XOR (^)

100  
101  
---  
001  

NOT (~)

101 
---  
010  

Shift (>>) and (<<)

0001_0111 >> 3 = 0000_0010
0001_0111 << 3 = 1011_1000

Arithmetic

Multiply x by 2k

x << k
Example: 5 * 8 = 5 << 3

Divide x by 2k

x >> k
Example: 20 / 16 = 20 >> 4

Mod by 2k

x & (2k-1)

Example: 20 % 16 = 20 & 15

Is x power of 2?

(x != 0) && (x & (x - 1)) == 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment