二进制运算

· · 个人记录

\text{lowbit} 运算

int lowbit(int n){return n & -n;}

好像只有这个有用……