Forked from Coding-Enthusiast/BitwiseOperations.md
Created
December 22, 2020 08:33
-
-
Save chandanws/cdbd66ee6108447e16b36d4fd54c4a0f to your computer and use it in GitHub Desktop.
Revisions
-
Coding-Enthusiast revised this gist
Apr 13, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -30,4 +30,6 @@ ### Mod by 2<sup>k</sup> x & (2<sup>k</sup>-1) Example: 20 % 16 = 20 & 15 ### Is x power of 2? (x != 0) && (x & (x - 1)) == 0 -
Coding-Enthusiast created this gist
Apr 12, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ ### 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 2<sup>k</sup> x << k Example: 5 * 8 = 5 << 3 ### Divide x by 2<sup>k</sup> x >> k Example: 20 / 16 = 20 >> 4 ### Mod by 2<sup>k</sup> x & (2<sup>k</sup>-1) Example: 20 % 16 = 20 & 15