Skip to content

gnanapoorani/DataStructure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bit Manipulation

**_And Operator - (Any Zero - Zero , All 1- 1)

img.png

Or Operator (Any 1 - 1 , All Zero - Zero)

img_1.png

Xor Operator (Even 1- 0 , Odd 1 -1)

img_2.png

Negation Operator

Right shift Operator

img_4.png

Left Shift Operator_**

img_3.png

  1. Calculate XOR from 1 to n

img_5.png

img_6.png

  1. Count the no of set bits

6.1) while (n > 0) { if ((n & 1) == 1) { cnt++; // if n&1 == 1 keep incrementing cnt // variable } n = n >> 1; // keep dividing n by 2 using right // shift operator }

6.2)/* First x in the below expression is for the case when x is 0 */ return x != 0 && ((x & (x - 1)) == 0); - Brian Kernighan’s Algorithm:

6.3) if ((n & (~(n - 1))) == n) return true;

6.4) System.out.println(Integer.bitCount(4)); System.out.println(Integer.bitCount(15));

  1. Position of right most set bit

img_7.png

8) Add 1 to number without + operator

Method 1 To add 1 to a number x (say 0011000111), flip all the bits after the rightmost 0 bit (we get 0011000000). Finally, flip the rightmost 0 bit also (we get 0011001000) to get the answer.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages