nella funzione stampa, sostituisci:
Originariamente inviato da gianvituzzi
codice:
	while (g < dwNumChunks)
	{
		printf("%d -> %d\n", g, hashChunk[g]);
		++g;
	}
con
codice:
for (std::map<int, int>::const_iterator aIter = hashChunk.begin (); aIter != hashChunk.end (); ++aIter){
	printf("%d -> %d\n", aIter->first, aIter->second);
}