标签:
int lowbit(int x){ return x&(x^(x–1)); }
int lowbit(int x){ return x&-x; }
杂-lowbit
原文地址:http://www.cnblogs.com/zhangyifang/p/5183426.html