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;를 사용하여 Import"를 추가하면 그런 다음 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;
}
}
중첩 된 do-while은 shift + 1이 pos보다 작 으면 오른쪽으로 이동 된 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