Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 99 Bytes

File metadata and controls

7 lines (6 loc) · 99 Bytes

取最低位

int lowBit(int n) {
    return n & -n;  // 等价于 n & (n ^ (n - 1))
}