摘要: /* *计算一个数的二进制中1的个数 */#include int numberOf1InBinary(const unsigned int a);int numberOf1InBinary_Mask(const unsigned int a); int main(int argv , char** argc){ int a = 8 ; printf("the number of 1 in %... 阅读全文
posted @ 2012-03-31 09:56 ifeixiang 阅读(220) 评论(0) 推荐(0) 编辑