Jump to content

Talk:Bitwise trie with bitmap

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

CTPOP

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]