这个C函数返回什么?

时间:2013-01-09 18:26:54

标签: c function return

int f(int n)
{
    int i, c = 0;
    for (i=0; i < sizeof(int)*8; i++, n >>= 1)
        c = (n & 0x01)? c+1: c;
    return c;
}

这是我在书上发现的一个练习,但我真的不明白!

2 个答案:

答案 0 :(得分:7)

它计算传入的参数n中设置的位数(假设您的机器具有8位字节)。我会在你的代码内联评论(并修复可怕的格式化):

int f(int n)
{
    int i;     // loop counter
    int c = 0; // initial count of set bits is 0

    // loop for sizeof(int) * 8 bits (probably 32), 
    // downshifting n by one each time through the loop
    for (i = 0; i < sizeof(int) * 8; i++, n >>= 1) 
    {
        // if the current LSB of 'n' is set, increment the counter 'c',
        // otherwise leave it the same
        c = (n & 0x01) ? (c + 1) : c;  
    }

    return c;  // return total number of set bits in parameter 'n'
}

答案 1 :(得分:-1)

它正在按位进行 - 关闭和关闭位。