C#,148个字节
int x(int i){int s,r=0,j=i,p=System.Convert.ToString(i,2).Length+1,k;for(;--p>-1;){k=j;s=-1;for(;++s<p;)r+=(k>>=1);j=(i&((1<<p-1)-1))<<1;}return r;}
或者,如果添加“使用静态System.Math导入”;然后用138
int x(int i){int s,r=0,j=i,p=(int)Round(Log(i,2)+1.49,0),k;for(;--p>-1;){k=j;s=-1;for(;++s<p;)r+=(k>>=1);j=(i&((1<<p-1)-1))<<1;}return r;}
像C#这样的OOP语言不会赢得这场比赛,但是我还是想尝试一下。这是一个更加美化的版本+测试器。
class Program
{
// Tester: 50 bytes
static void Main(string[] args)
{
int i=2;
do System.Console.WriteLine($"{i} -> {x(i++)}"); while (i < 12);
System.Console.Read();
}
// Function: 65 bytes (size according to ILDASM.exe)
static int x(int iOrg)
{
int pos, shift, retVal=0, iPrev=iOrg, iTemp;
pos = System.Convert.ToString(iOrg, 2).Length;
do {
iTemp = iPrev; shift = 0;
do retVal += (iTemp >>= 1); while (++shift < pos);
iPrev = (iOrg & ((1 << pos - 1) - 1)) << 1;
} while (--pos > -1);
return retVal;
}
}
只要shift + 1小于pos,则嵌套do-while会添加iTemp的右移值(分配后)。下一行计算iPrev的下一个移位值
x1 = 1 << p -1; // 1 << 4 -1 = 8 [1000]
x2 = x1 - 1; // 8 - 1 = 7 [0111]
x3 = i & x2; // 1011 & 0111 = 0011
x4 = x3 << 1; // 0011 << 1 = 00110
i2 = x4;
x1和x2计算掩码,x3应用它,然后左移它,因为最后一位总是被丢弃。对于11,它看起来像这样:
START -> _1011[11]
101
10
1 --> X0110[6], r=0+5+2+1=8
011
01
0 --> XX110[6], r=8+4=12
11
1 --> XXX10[2], r=12+4=16
1 -> XXXX0[X], r=16+1=17