Skip to content

Instantly share code, notes, and snippets.

@johnmay
Created February 3, 2016 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnmay/1cc17ff6280f308e015b to your computer and use it in GitHub Desktop.
Save johnmay/1cc17ff6280f308e015b to your computer and use it in GitHub Desktop.
CDK ICountFingerprint iteration.
ICountFingerprint fp;
int numBins = fp.numOfPopulatedbins();
for (int i = 0; i < numBins; i++) {
int hash = fp.getHash(i);
int freq = fp.getCount(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment