Jump to content

Talk:Bitwise trie with bitmap

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 46.204.12.183 (talk) at 09:33, 29 July 2022 (CTPOP: new section). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconArticles for creation C‑class
WikiProject iconThis article was reviewed by member(s) of WikiProject Articles for creation. The project works to allow users to contribute quality articles and media files to the encyclopedia and track their progress as they are developed. To participate, please visit the project page for more information.
CThis article has been rated as C-class on Wikipedia's content assessment scale.
Note icon
This article was accepted from this draft on 15 June 2021 by reviewer Scope creep (talk · contribs).

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]