lowbit(x)

int lowbit(int x)
{
    return x & -x;
}
posted @ 2022-07-20 12:01  冯大善人  阅读(21)  评论(0)    收藏  举报