当前位置:   article > 正文

c语言实现hashtable

c语言实现hashtable
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define SIZE 10

typedef struct hash_table_item_s {
    int key;
    int value;
    struct hash_table_item_s* next;
} hash_table_item;

hash_table_item* hash_table[SIZE];

int hash_function(int key) {
    return key % SIZE;
}

void hash_table_insert(int key, int value) {
    int index = hash_function(key);
    hash_table_item* item = malloc(sizeof(hash_table_item));
    item->key = key;
    item->value = value;
    item->next = hash_table[index];
    hash_table[index] = item;
}

hash_table_item* hash_table_search(int key) {
    int index = hash_function(key);
    hash_table_item* item = hash_table[index];
    while (item) {
        if (item->key == key) {
            return item;
        }
        item = item->next;
    }
    return NULL;
}

void hash_table_delete(int key) {
    int index = hash_function(key);
    hash_table_item* item = hash_table[index];
    hash_table_item* prev = NULL;
    while (item) {
        if (item->key == key) {
            if (prev) {
                prev->next = item->next;
            } else {
                hash_table[index] = item->next;
            }
            free(item);
            return;
        }
        prev = item;
        item = item->next;
    }
}

int main() {
    hash_table_insert(1, 10);
    hash_table_insert(2, 20);
    hash_table_insert(3, 30);
    hash_table_item* item = hash_table_search(2);
    if (item) {
        printf("key: %d, value: %d\n", item->key, item->value);
    }
    hash_table_delete(2);
    item = hash_table_search(2);
    if (item) {
        printf("key: %d, value: %d\n", item->key, item->value);
    } else {
        printf("key not found\n");
    }
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/449895
推荐阅读
  

闽ICP备14008679号