“DJB2 HASH FINTY C explicó” Código de respuesta

DJB2 HASH FINTY C explicó

// Djb2 hash function
unsigned long hash(char *str) 
{

        unsigned long hash = 5381;
        int c;
        while ((c = *str++))
            hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
        return hash % NUM_BUCKETS;

}
Nutty Nightingale

Algoritmo DJB2 para C

// Djb2 hash function - really good and implementable code
unsigned long hash(char *str) {

        unsigned long hash = 5381;
        int c;
        while ((c = *str++))
            hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
        return hash % NUM_BUCKETS;

}
Obnoxious Ocelot

Respuestas similares a “DJB2 HASH FINTY C explicó”

Preguntas similares a “DJB2 HASH FINTY C explicó”

Más respuestas relacionadas con “DJB2 HASH FINTY C explicó” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código