🍎
Leetcode
  • README
  • Templates
    • interview_checklist
    • 🥰beauty of python
    • online IDE templates
    • time complexity analysis
  • Data structures
    • bit_operation
    • deque
    • hashtable
    • linked_list
    • priority_queue
      • Arrangement
      • Sort+PQ
    • stack
    • string
    • intervals
    • trie
    • graph
    • tree
  • Algorithm
    • bfs
    • binary_search
    • dfs
    • topological sort
    • dynamic_programming
    • greedy
    • union_find
    • recursion
    • two_pointers
    • Offline processing
  • Other
    • design
    • everything
    • math
  • Company
    • Tree
    • BinarySearch
Powered by GitBook
On this page
  • Bit Manipulation
  • Common tasks
  • XOR
  • Bit Mask
  1. Data structures

bit_operation

  • Bit Manipulation

    • Common tasks

    • XOR

    • Bit Mask

Bit Manipulation

137.Single-Number-II (H-) 260.Single-Number-III (H) 371.Sum-of-Two-Integers (H) 318.Maximum-Product-of-Word-Lengths (M+) 342.Power-of-Four (H) 957.Prison-Cells-After-N-Days (H) 1461.Check-If-a-String-Contains-All-Binary-Codes-of-Size-K (TBD) 1521.Find-a-Value-of-a-Mysterious-Function-Closest-to-Target (H-)

Common tasks

  • get bit, set bit, clear bit and update bit

boolean getBit( int num, int i )
{
  return ((num & (1 << i)) != 0 );
}

int setBit( int num, int i ) 
{ 
  return num | (1 << i); 
}

int clearBit( int num, int i ) 
{ 
  int mask = ~(1 << i); 
  return num & mask; 
}

// clear all bits from the most significant bit through i (inclusive) 
int clearBitsMSBthroughI( int num, int i ) 
{ 
  int mask = (1 << i) - 1; 
  return num & mask; 
}

// clear all bits from i (inclusive) through 0 
int clearBitsIthrough0( int num, int i ) 
{ 
  int mask = ~(-1 >>> (31 - i)); 
  return num & mask; 
}

// set the ith bit to a value v 
int updateBit(int num, int i, boolean bitIs1) 
{ 
  int value = bitIs1 ? 1 : 0; 
  int mask = ~(1 << i); 
  
  return (num & mask) | (value << i); 
}

XOR

136.Single-Number (M) 268.Missing-Number (H-) 1310.XOR-Queries-of-a-Subarray (M) 1442.Count-Triplets-That-Can-Form-Two-Arrays-of-Equal-XOR (M+) 1506.Find-Root-of-N-Ary-Tree (M+) 1734.Decode-XORed-Permutation (M+) 1738.Find-Kth-Largest-XOR-Coordinate-Value (M+) 1835.Find-XOR-Sum-of-All-Pairs-Bitwise-AND (M)

Bit Mask

1239.Maximum-Length-of-a-Concatenated-String-with-Unique-Characters (M+) 1284.Minimum-Number-of-Flips-to-Convert-Binary-Matrix-to-Zero-Matrix (M+) 1452.People-Whose-List-of-Favorite-Companies-Is-Not-a-Subset-of-Another-List (H-) 1601.Maximum-Number-of-Achievable-Transfer-Requests (H-) 1755.Closest-Subsequence-Sum (H) 1774.Closest-Dessert-Cost (M) 2002.Maximum-Product-of-the-Length-of-Two-Palindromic-Subsequences

Previoustime complexity analysisNextdeque

Last updated 3 years ago