Name: Anonymous 2014-05-25 20:36
unsigned long hash(unsigned char *str)
{
unsigned int hash = 0;
int c;
while (c = *str++)
{
hash += c;
}
return hash;
}
Spent hours designing it. It is safer than md5!
unsigned long hash(unsigned char *str)
{
unsigned int hash = 0;
int c;
while (c = *str++)
{
hash += c;
}
return hash;
}
Average adult human vocabulary is about 30000 wordsYes and? I'm sure they can improve their vocabulary to more, some may know words of other languages, some may be below average or incredibly above average.
i.e. when you read a book, you can recognize and analyze relations between 30000 concepts.Does not follow. Words are used to form concepts but concepts are not words and not all words will equate to a concept. A person who has a vocabulary of 30000 words will recognize 30000 words without needing a dictionary for them.
So I will be surprised if human brain can operate datasets larger than 100000 items, especially because no single neuron can sample them all and as I understand it, most neurons sample only specific portion of the brain: i.e. visual cortex neuron don't directly sample auditory cortex ones.Does not follow and what do datasets http://whatis.techtarget.com/definition/data-set have anything to do with the human brain?