亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? hash_modify.c

?? /* * The internal form of a hash table. * * The table is an array indexed by the hash of the k
?? C
字號:
/* Copyright 2000-2004 The Apache Software Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.

 * split from apache for general usage by Yankee
 * use system malloc instead of apr_pool ,although it is not so effiecient but suitable for small
 * scale usage.
*/

//#include "apr_private.h"

//#include "apr_general.h"
//#include "apr_pools.h"

#include "hash_modify.h"

//#if APR_HAVE_STDLIB_H
#include <stdlib.h>
//#endif
//#if APR_HAVE_STRING_H
#include <string.h>
//#endif


/*
 * The internal form of a hash table.
 *
 * The table is an array indexed by the hash of the key; collisions
 * are resolved by hanging a linked list of hash entries off each
 * element of the array. Although this is a really simple design it
 * isn't too bad given that pools have a low allocation overhead.
 */

typedef struct apr_hash_entry_t apr_hash_entry_t;

struct apr_hash_entry_t {
    apr_hash_entry_t *next;
    unsigned int      hash;
    const void       *key;
    apr_ssize_t       klen;
    const void       *val;
};

/*
 * Data structure for iterating through a hash table.
 *
 * We keep a pointer to the next hash entry here to allow the current
 * hash entry to be freed or otherwise mangled between calls to
 * apr_hash_next().
 */
struct apr_hash_index_t {
    apr_hash_t         *ht;
    apr_hash_entry_t   *this, *next;
    unsigned int        index;
};

/*
 * The size of the array is always a power of two. We use the maximum
 * index rather than the size so that we can use bitwise-AND for
 * modular arithmetic.
 * The count of hash entries may be greater depending on the chosen
 * collision rate.
 */
struct apr_hash_t {
    apr_pool_t          *pool;
    apr_hash_entry_t   **array;
    apr_hash_index_t     iterator;  /* For apr_hash_first(NULL, ...) */
    unsigned int         count, max;
};

#define INITIAL_MAX 15 /* tunable == 2^n - 1 */


/*
 * Hash creation functions.
 */

static apr_hash_entry_t **alloc_array(apr_hash_t *ht, unsigned int max)
{
   return malloc(ht->pool, sizeof(*ht->array) * (max + 1));
}

apr_hash_t * apr_hash_make(void)
{
    apr_hash_t *ht;
    ht =malloc(pool, sizeof(apr_hash_t));
    ht->pool = pool;
    ht->count = 0;
    ht->max = INITIAL_MAX;
    ht->array = alloc_array(ht, ht->max);
    return ht;
}


/*
 * Hash iteration functions.
 */

apr_hash_index_t * apr_hash_next(apr_hash_index_t *hi)
{
    hi->this = hi->next;
    while (!hi->this) {
        if (hi->index > hi->ht->max)
            return NULL;

        hi->this = hi->ht->array[hi->index++];
    }
    hi->next = hi->this->next;
    return hi;
}

apr_hash_index_t * apr_hash_first(apr_pool_t *p, apr_hash_t *ht)
{
    apr_hash_index_t *hi;
    if (p)
        hi = malloc(p, sizeof(*hi));
    else
        hi = &ht->iterator;

    hi->ht = ht;
    hi->index = 0;
    hi->this = NULL;
    hi->next = NULL;
    return apr_hash_next(hi);
}

void apr_hash_this(apr_hash_index_t *hi,
                                const void **key,
                                apr_ssize_t *klen,
                                void **val)
{
    if (key)  *key  = hi->this->key;
    if (klen) *klen = hi->this->klen;
    if (val)  *val  = (void *)hi->this->val;
}


/*
 * Expanding a hash table
 */

static void expand_array(apr_hash_t *ht)
{
    apr_hash_index_t *hi;
    apr_hash_entry_t **new_array;
    unsigned int new_max;

    new_max = ht->max * 2 + 1;
    new_array = alloc_array(ht, new_max);
    for (hi = apr_hash_first(NULL, ht); hi; hi = apr_hash_next(hi)) {
        unsigned int i = hi->this->hash & new_max;
        hi->this->next = new_array[i];
        new_array[i] = hi->this;
    }
    ht->array = new_array;
    ht->max = new_max;
}

/*
 * This is where we keep the details of the hash function and control
 * the maximum collision rate.
 *
 * If val is non-NULL it creates and initializes a new hash entry if
 * there isn't already one there; it returns an updatable pointer so
 * that hash entries can be removed.
 */

static apr_hash_entry_t **find_entry(apr_hash_t *ht,
                                     const void *key,
                                     apr_ssize_t klen,
                                     const void *val)
{
    apr_hash_entry_t **hep, *he;
    const unsigned char *p;
    unsigned int hash;
    apr_ssize_t i;

    /*
     * This is the popular `times 33' hash algorithm which is used by
     * perl and also appears in Berkeley DB. This is one of the best
     * known hash functions for strings because it is both computed
     * very fast and distributes very well.
     *
     * The originator may be Dan Bernstein but the code in Berkeley DB
     * cites Chris Torek as the source. The best citation I have found
     * is "Chris Torek, Hash function for text in C, Usenet message
     * <27038@mimsy.umd.edu> in comp.lang.c , October, 1990." in Rich
     * Salz's USENIX 1992 paper about INN which can be found at
     * <http://citeseer.nj.nec.com/salz92internetnews.html>.
     *
     * The magic of number 33, i.e. why it works better than many other
     * constants, prime or not, has never been adequately explained by
     * anyone. So I try an explanation: if one experimentally tests all
     * multipliers between 1 and 256 (as I did while writing a low-level
     * data structure library some time ago) one detects that even
     * numbers are not useable at all. The remaining 128 odd numbers
     * (except for the number 1) work more or less all equally well.
     * They all distribute in an acceptable way and this way fill a hash
     * table with an average percent of approx. 86%.
     *
     * If one compares the chi^2 values of the variants (see
     * Bob Jenkins ``Hashing Frequently Asked Questions'' at
     * http://burtleburtle.net/bob/hash/hashfaq.html for a description
     * of chi^2), the number 33 not even has the best value. But the
     * number 33 and a few other equally good numbers like 17, 31, 63,
     * 127 and 129 have nevertheless a great advantage to the remaining
     * numbers in the large set of possible multipliers: their multiply
     * operation can be replaced by a faster operation based on just one
     * shift plus either a single addition or subtraction operation. And
     * because a hash function has to both distribute good _and_ has to
     * be very fast to compute, those few numbers should be preferred.
     *
     *                  -- Ralf S. Engelschall <rse@engelschall.com>
     */
    hash = 0;
    if (klen == APR_HASH_KEY_STRING) {
        for (p = key; *p; p++) {
            hash = hash * 33 + *p;
        }
        klen = p - (const unsigned char *)key;
    }
    else {
        for (p = key, i = klen; i; i--, p++) {
            hash = hash * 33 + *p;
        }
    }

    /* scan linked list */
    //????
    for (hep = &ht->array[hash & ht->max], he = *hep;
         he; hep = &he->next, he = *hep) {
        if (he->hash == hash
            && he->klen == klen
            && memcmp(he->key, key, klen) == 0)
            break;
    }
    if (he || !val)
        return hep;

    /* add a new entry for non-NULL values */
    he = malloc(ht->pool, sizeof(*he));
    he->next = NULL;
    he->hash = hash;
    he->key  = key;
    he->klen = klen;
    he->val  = val;
    *hep = he;
    ht->count++;
    return hep;
}

apr_hash_t * apr_hash_copy(apr_pool_t *pool,
                                        const apr_hash_t *orig)
{
    apr_hash_t *ht;
    apr_hash_entry_t *new_vals;
    unsigned int i, j;

    ht = apr_palloc(pool, sizeof(apr_hash_t) +
                    sizeof(*ht->array) * (orig->max + 1) +
                    sizeof(apr_hash_entry_t) * orig->count);
    ht->pool = pool;
    ht->count = orig->count;
    ht->max = orig->max;
    ht->array = (apr_hash_entry_t **)((char *)ht + sizeof(apr_hash_t));

    new_vals = (apr_hash_entry_t *)((char *)(ht) + sizeof(apr_hash_t) +
                                    sizeof(*ht->array) * (orig->max + 1));
    j = 0;
    for (i = 0; i <= ht->max; i++) {
        apr_hash_entry_t **new_entry = &(ht->array[i]);
        apr_hash_entry_t *orig_entry = orig->array[i];
        while (orig_entry) {
            *new_entry = &new_vals[j++];
            (*new_entry)->hash = orig_entry->hash;
            (*new_entry)->key = orig_entry->key;
            (*new_entry)->klen = orig_entry->klen;
            (*new_entry)->val = orig_entry->val;
            new_entry = &((*new_entry)->next);
            orig_entry = orig_entry->next;
        }
        *new_entry = NULL;
    }
    return ht;
}

void * apr_hash_get(apr_hash_t *ht,
                                 const void *key,
                                 apr_ssize_t klen)
{
    apr_hash_entry_t *he;
    he = *find_entry(ht, key, klen, NULL);
    if (he)
        return (void *)he->val;
    else
        return NULL;
}

void apr_hash_set(apr_hash_t *ht,
                               const void *key,
                               apr_ssize_t klen,
                               const void *val)
{
    apr_hash_entry_t **hep;
    hep = find_entry(ht, key, klen, val);
    if (*hep) {
        if (!val) {
            /* delete entry */
            *hep = (*hep)->next;
            --ht->count;
        }
        else {
            /* replace entry */
            (*hep)->val = val;
            /* check that the collision rate isn't too high */
            if (ht->count > ht->max) {
                expand_array(ht);
            }
        }
    }
    /* else key not present and val==NULL */
}

unsigned intapr_hash_count(apr_hash_t *ht)
{
    return ht->count;
}

apr_hash_t* apr_hash_overlay(apr_pool_t *p,
                                          const apr_hash_t *overlay,
                                          const apr_hash_t *base)
{
    return apr_hash_merge(p, overlay, base, NULL, NULL);
}

apr_hash_t *apr_hash_merge(apr_pool_t *p,
                                         const apr_hash_t *overlay,
                                         const apr_hash_t *base,
                                         void * (*merger)(apr_pool_t *p,
                                                     const void *key,
                                                     apr_ssize_t klen,
                                                     const void *h1_val,
                                                     const void *h2_val,
                                                     const void *data),
                                         const void *data)
{
    apr_hash_t *res;
    apr_hash_entry_t *new_vals = NULL;
    apr_hash_entry_t *iter;
    apr_hash_entry_t *ent;
    unsigned int i,j,k;


    res = malloc(p, sizeof(apr_hash_t));
    res->pool = p;
    res->count = base->count;
    res->max = (overlay->max > base->max) ? overlay->max : base->max;
    if (base->count + overlay->count > res->max) {
        res->max = res->max * 2 + 1;
    }
    res->array = alloc_array(res, res->max);
    if (base->count + overlay->count) {
        new_vals =  malloc(p, sizeof(apr_hash_entry_t) *
                              (base->count + overlay->count));
    }
    j = 0;
    for (k = 0; k <= base->max; k++) {
        for (iter = base->array[k]; iter; iter = iter->next) {
            i = iter->hash & res->max;
            new_vals[j].klen = iter->klen;
            new_vals[j].key = iter->key;
            new_vals[j].val = iter->val;
            new_vals[j].hash = iter->hash;
            new_vals[j].next = res->array[i];
            res->array[i] = &new_vals[j];
            j++;
        }
    }

    for (k = 0; k <= overlay->max; k++) {
        for (iter = overlay->array[k]; iter; iter = iter->next) {
            i = iter->hash & res->max;
            for (ent = res->array[i]; ent; ent = ent->next) {
                if ((ent->klen == iter->klen) &&
                    (memcmp(ent->key, iter->key, iter->klen) == 0)) {
                    if (merger) {
                        ent->val = (*merger)(p, iter->key, iter->klen,
                                             iter->val, ent->val, data);
                    }
                    else {
                        ent->val = iter->val;
                    }
                    break;
                }
            }
            if (!ent) {
                new_vals[j].klen = iter->klen;
                new_vals[j].key = iter->key;
                new_vals[j].val = iter->val;
                new_vals[j].hash = iter->hash;
                new_vals[j].next = res->array[i];
                res->array[i] = &new_vals[j];
                res->count++;
                j++;
            }
        }
    }
    return res;
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本在线不卡视频| 久久伊人中文字幕| 亚洲一卡二卡三卡四卡五卡| 成人精品电影在线观看| 国产精品乱码久久久久久| 高清在线不卡av| 亚洲欧美日韩人成在线播放| 色偷偷88欧美精品久久久 | 6080yy午夜一二三区久久| 亚洲午夜国产一区99re久久| 欧美日韩极品在线观看一区| 偷拍日韩校园综合在线| 精品福利av导航| 不卡一卡二卡三乱码免费网站| 亚洲日本在线a| 欧美精品123区| 国产一区二区三区黄视频 | 美女视频免费一区| 久久久精品人体av艺术| 不卡电影一区二区三区| 五月天激情综合| 国产婷婷一区二区| 欧美性极品少妇| 国产一区欧美日韩| 一区二区在线观看免费视频播放| 欧美精品在线视频| 国产91精品在线观看| 亚洲国产精品麻豆| 久久综合网色—综合色88| 99re66热这里只有精品3直播 | 欧美激情综合五月色丁香| 色伊人久久综合中文字幕| 免费人成网站在线观看欧美高清| 国产欧美日韩卡一| 91精品久久久久久久91蜜桃| 国产·精品毛片| 日本亚洲欧美天堂免费| 1024精品合集| 26uuu欧美| 欧美日韩国产一区二区三区地区| 国产精品一区在线观看你懂的| 亚洲日本护士毛茸茸| 日韩欧美二区三区| 欧美亚洲动漫精品| 懂色一区二区三区免费观看| 天天亚洲美女在线视频| 亚洲女同女同女同女同女同69| 精品国精品国产| 欧美久久久一区| 色久综合一二码| 国产jizzjizz一区二区| 美国三级日本三级久久99 | 日韩三级.com| 欧美在线免费视屏| 99久久精品一区二区| 精品亚洲porn| 免费观看日韩av| 亚洲va在线va天堂| 亚洲一区二区三区在线看| 国产精品网站在线观看| 久久综合中文字幕| 精品国精品国产| 精品国产凹凸成av人网站| 91麻豆精品国产自产在线观看一区| 色域天天综合网| a在线欧美一区| 99国产精品久久久久久久久久久| 国产91色综合久久免费分享| 国产麻豆成人精品| 国产精品一线二线三线| 国模娜娜一区二区三区| 老鸭窝一区二区久久精品| 五月婷婷久久综合| 日韩精品免费专区| 免费成人性网站| 激情亚洲综合在线| 九九视频精品免费| 国产一区二区美女| 国产成人精品亚洲777人妖 | 亚洲国产va精品久久久不卡综合| 伊人色综合久久天天人手人婷| 亚洲欧美日韩国产综合| 亚洲私人黄色宅男| 亚洲精品成人天堂一二三| 亚洲精品你懂的| 亚洲中国最大av网站| 偷拍亚洲欧洲综合| 九一九一国产精品| 成人午夜精品在线| 91色porny在线视频| 欧美在线观看禁18| 欧美日韩亚洲另类| 日韩女优电影在线观看| 久久综合九色综合97婷婷女人 | 亚洲视频一二三区| 一区二区三区四区在线| 亚洲6080在线| 极品美女销魂一区二区三区| 久久国产人妖系列| 成人av网站免费观看| 色婷婷综合久久久久中文| 欧美人妇做爰xxxⅹ性高电影| 91精品蜜臀在线一区尤物| 26uuu亚洲综合色欧美| 中文字幕日韩一区| 午夜精品久久久久久| 久久精品国产网站| 成人动漫一区二区在线| 欧美日韩一区二区三区视频| 日韩精品一区二| 亚洲欧洲美洲综合色网| 午夜精品久久久久久久99樱桃| 国产资源精品在线观看| 色综合天天在线| 91精品欧美福利在线观看| 国产欧美综合色| 亚洲国产人成综合网站| 国产剧情在线观看一区二区| 91香蕉视频在线| 欧美一级黄色录像| 亚洲蜜臀av乱码久久精品蜜桃| 裸体一区二区三区| av电影一区二区| 日韩欧美国产综合在线一区二区三区 | 91丝袜高跟美女视频| 91精品国产福利| 亚洲日本va午夜在线电影| 青青草91视频| 色婷婷综合久久久中文字幕| 精品国产3级a| 天天操天天综合网| 色女孩综合影院| 亚洲精品在线观看网站| 洋洋成人永久网站入口| 国产福利电影一区二区三区| 欧美日韩免费一区二区三区 | 亚洲欧美一区二区不卡| 精品系列免费在线观看| 在线亚洲精品福利网址导航| 久久久久97国产精华液好用吗| 香蕉影视欧美成人| 91同城在线观看| 国产精品毛片无遮挡高清| 久久精品国产一区二区三| 欧美电影一区二区| 一区二区日韩av| 91麻豆免费观看| 国产精品人人做人人爽人人添| 毛片一区二区三区| 在线播放视频一区| 亚洲一卡二卡三卡四卡无卡久久| av影院午夜一区| 中文字幕的久久| 国产成人三级在线观看| 欧美va日韩va| 美腿丝袜亚洲综合| 欧美一区永久视频免费观看| 亚洲资源在线观看| 在线观看区一区二| 亚洲综合一区二区三区| 97se亚洲国产综合自在线观| 国产日本一区二区| 丁香桃色午夜亚洲一区二区三区| 精品国产在天天线2019| 七七婷婷婷婷精品国产| 欧美一卡二卡三卡| 理论片日本一区| 精品国产91乱码一区二区三区| 捆绑调教一区二区三区| 欧美tk丨vk视频| 国产一区二区伦理| 国产精品少妇自拍| 99视频热这里只有精品免费| 亚洲国产成人午夜在线一区| 懂色中文一区二区在线播放| 国产精品婷婷午夜在线观看| 春色校园综合激情亚洲| 国产精品国产三级国产专播品爱网| 国产东北露脸精品视频| 国产精品入口麻豆九色| 99re视频这里只有精品| 亚洲国产精品久久久久秋霞影院 | 国产三级三级三级精品8ⅰ区| 国产真实乱子伦精品视频| 国产免费成人在线视频| 99久免费精品视频在线观看| 亚洲激情五月婷婷| 欧美日韩国产中文| 韩国女主播一区| 国产精品五月天| 欧美无人高清视频在线观看| 日韩激情视频在线观看| 久久综合色8888| 99国产精品久久久久久久久久久| 一个色妞综合视频在线观看| 制服丝袜一区二区三区| 国产一区二区在线视频| 综合网在线视频| 337p亚洲精品色噜噜噜| 高清不卡在线观看av|