\
class Solution { public: int NumberOf1(int n) { int f=0; if(n<0){ f++; n+=2147483648u; } while(n){ f+=(n&1); n=n>>1; } return f; } };