Session 5: Math1 & Math2
Original Session
Date: 9 Nov 2024
- Topic: Math 1
- Concept Bit Manipulation.
- operator
- and = &
- or = |
- xor = ^
- complement = ~
- Concept: Power of 2
- if Number is power of 2 then n & (n-1) == 0
- 8 & 7 = 0 using bitwise &.
- if Number is power of 2 then n & (n-1) == 0
- Concept: Remove one bit from right.
- Formula : n & n-1
- Find first bit from right.
- complement (~) all bits from this bit to the right, rest of the bits of left will be the same.
- Make & operation with original bits and newly created bit after complement operation.
- This will remove one bit from right.
- To remove all bits keep doing this operation in loop until 0;
- n = n & n-1 until 0 will remove one bit each time.
- If n is even, n-1 will be last bit to zero.
- If n is odd, n-1 will be complement all bits to right starting from right most set bit
- n = 9
bit = 1 0 0 1
n-1 = 8
bit = 1 0 0 0
- n = 6
bit = 1 1 0
n-1 = 5
bit = 1 0 1
- n = 9
- Concept: Last Set Bit
- Formula : n & ~(n-1)
- n = 8 bit 1 0 0 0
n - 1 = 7 bit 0 1 1 1
~(n-1) = ~(7) bit 1 0 0 0
n & ~(n-1) = 1 0 0 0 & 1 0 0 0
- n = 11 bit 1 0 1 1
n-1 = 10 bit 1 0 1 0
~(n-1) = 0 1 0 1
n & ~(n-1) = 0 0 0 1
- n = 8 bit 1 0 0 0
- Formula : n & ~(n-1)
- Concept: All Odd positioned bits
- 0xAAAAAAAA
- operator
- Concept Bit Manipulation.
- Convert Integer to Binary
- Code
void toBinary(int N) { //Write your code here List<Integer> list = new ArrayList(); while (N >= 1) { list.add(N%2); N = N/2; } Collections.reverse(list); for (int value: list) { System.out.print(String.valueOf(value)); } }
- Leetcode 136. Single Number
- code
public int singleNumber(int[] nums) { int num = 0; for (int value: nums) { num ^= value; } return num; }
- leetcode 231. Power of Two
- code
public boolean isPowerOfTwo(int N) { if (N<=0) { return false; } if ( (N & (N-1)) == 0) { return true; } return false; }
- leetcode 191. Number of 1 Bits
- code
public int hammingWeight(int n) { int count = 0; while (n>0) { n = n&n-1; count ++; } return count; }
- 389. Find the Difference
- Bits with Stream
public char findTheDifference(String s, String t) { char sXor = (char)s.chars().reduce(0, (a,b) -> a^b); char tXor = (char)t.chars().reduce(0, (a,b) -> a^b); return (char)(sXor^tXor); }
- Bits with two pointers
public char findTheDifference(String s, String t) { int left = 0; char ch = (char)0; while (left < t.length()) { if (left < s.length()) { ch^=s.charAt(left); } if (left < t.length()) { ch^=t.charAt(left); } left ++; } return ch; }
- Bits with Stream
- leetcode 342. Power of Four
- code
- Bitmanipulation
public boolean isPowerOfFour(int n) { return (n > 0) && ((n&(n-1)) == 0) && ((n&0xAAAAAAAA) == 0); }
- Math
public boolean isPowerOfFour(int n) { if (n<=0) { return false; } while (n > 1) { if (n%4 > 0) { return false; } n = n/4; } return true; }
- Bitmanipulation
- code
- leetcode 260. Single Number III
- leetcode here
public int[] singleNumber(int[] nums) { int x = 0; int y = 0; int xor = 0; // Find remained bits for (int i = 0; i < nums.length; i++) { xor ^= nums[i]; } // Find last set bit from ramained bits int lastSetBit = xor & ~(xor - 1); // seggregate the bucket which have and havenot lastSet bit. for (int i = 0; i < nums.length; i++) { if ((lastSetBit & nums[i]) == 0) { // havenot x ^= nums[i]; } else { // have y ^= nums[i]; } } return new int[] {x, y}; }
- leetcode 137. Single Number II
- leetcode here
public int singleNumber(int[] nums) { int n = nums.length; int ans = 0; int bitPositionToPower = 0; for (int index = 0; index < 32; index ++) { int countBit = 0; for (int j = 0; j < n; j ++) { countBit += nums[j] & 1; nums[j] = nums[j] >> 1; } if (((countBit % 3) & 1) == 1) { // does not have bit 3 times ans += Math.pow(2, bitPositionToPower); } bitPositionToPower ++; } return ans; }