Talk:Bitwise trie with bitmap

Latest comment: 1 year ago by 46.204.12.183 in topic CTPOP

CTPOP edit

int bitCount(long x) this i here, shouldn't it be rather v? x -= ((i >>> 1) & 0x5555555555555555L); x = (x & 0x3333333333333333L) + ((x >>> 2) & 0x3333333333333333L); x = (x + (x >>> 4)) & 0x0f0f0f0f0f0f0f0fL; x += (x >>> 8); x += (x >>> 16); x += (x >>> 32); return x & 0x7f; 46.204.12.183 (talk) 09:33, 29 July 2022 (UTC)Reply