Open jingtianer opened 8 months ago
https://jingtianer.github.io/home/2023/11/05/LeetCode/LeetCode-%E5%88%B7%E9%A2%98%E6%80%BB%E7%BB%93%E4%BD%8D%E8%BF%90%E7%AE%97/
位运算常见技巧 位运算计算 a op b res x xor 0x00 x x xor 0xff ~x x xor x 0 x and 0x00 0 x and 0xff x x and x x x or 0x00 x x or 0xff 0xff x or x x x and x-1 去掉最低位 x and -x 得到最低位 状态压缩
https://jingtianer.github.io/home/2023/11/05/LeetCode/LeetCode-%E5%88%B7%E9%A2%98%E6%80%BB%E7%BB%93%E4%BD%8D%E8%BF%90%E7%AE%97/
位运算常见技巧 位运算计算 a op b res x xor 0x00 x x xor 0xff ~x x xor x 0 x and 0x00 0 x and 0xff x x and x x x or 0x00 x x or 0xff 0xff x or x x x and x-1 去掉最低位 x and -x 得到最低位 状态压缩