C.Interface.And.Implementations—table(key-value系统)的实现

2024-08-24 18:18

本文主要是介绍C.Interface.And.Implementations—table(key-value系统)的实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、An  associative table is a set of key-value pairs. It’s like an array except that the indices can be values of any type.


C语言中宏的作用域是文件或者遇到undef为止。


table的实现是以哈希表和链表实现。内存形式如下:



===========================table.h===============================

#ifndef TABLE_INCLUDED
#define TABLE_INCLUDED#define T Table_T
typedef struct T *T;//exported functions
extern T    Table_new(int hint, int cmp(const void *x, const void *y),unsigned hash(const void *key));extern void   Table_free(T *table);extern int    Table_length(T table);
extern void  *Table_put   (T table, const void *key,void *value);
extern void  *Table_get   (T table, const void *key);
extern void  *Table_remove(T table, const void *key);
extern void   Table_map   (T table, void apply(const void *key, void **value, void *cl),void *cl);
extern void **Table_toArray(T table, void *end);#undef T
#endif

=========================table.c===============================

#include <limits.h>
#include <stddef.h>
#include "mem.h"
#include "assert.h"
#include "table.h"#define T Table_T//types
struct T{//fieldsint size;int (*cmp)(const void *x, const void *y);unsigned (*hash)(const void *key);int length;unsigned timestamp;struct binding{struct binding *link;const void *key;void *value;} **buckets;
};//static functions
static int cmpatom(const void *x, const void *y){return x != y;
}static unsigned hashatom(const void *key){return (unsigned long)key>>2;
}//functions
T Table_new(int hint,int cmp(const void *x, const void *y),unsigned hash(const void *key)){T table;int i;static int primes[] = {509, 509, 1021, 2053, 4093,8191, 16383, 32771, 65521, INT_MAX };assert(hint >= 0);for(i = 1; primes[i] < hint; ++i);table = ALLOC(sizeof(*table) + primes[i-1]*sizeof(table->buckets[0]));table->size = primes[i-1];table->cmp = cmp ? cmp : cmpatom;table->hash = hash ? hash : hashatom;table->buckets = (struct binding **)(table + 1);for(i = 0; i < table->size; ++i)table->buckets[i] = NULL;table->length = 0;table->timestamp = 0;return table;
}void *Table_get(T table, const void *key){int i;struct binding *p;assert(table);assert(key);i = (*table->hash)(key)%table->size;for(p = table->buckets[i]; p; p = p->link){if((*table->cmp)(key,p->key) == 0 )break;}return p ? p->value : NULL;
}void *Table_put(T table, const void *key, void *value){int i;struct binding *p;void *prev;assert(table);assert(key);//search table for keyi = (*table->hash)(key)%table->size;for(p = table->buckets[i]; p; p = p->link){if((*table->cmp)(key,p->key) == 0)break;}if(p == NULL){NEW(p);p->key = key;p->link = table->buckets[i];table->buckets[i] = p;table->length++;prev = NULL;}else{prev = p->value;}p->value = value;table->timestamp++;return prev;
}int Table_length(T table){assert(table);return table->length;
}void Table_map(T table,void apply(const void *key, void **value, void *cl),void *cl){int i;unsigned stamp;struct binding *p;assert(table);assert(apply);stamp = table->timestamp;for(i = 0; i < table->size; ++i){for(p = table->buckets[i]; p; p = p->link){apply(p->key, &p->value, cl);assert(table->timestamp == stamp);}}
}void *Table_remove(T table, const void *key){int i;struct binding **pp;assert(table);assert(key);table->timestamp++;i = (*table->hash)(key)%table->size;for(pp = &table->buckets[i]; *pp; pp = &(*pp)->link){if((*table->cmp)(key, (*pp)->key) == 0){struct binding *p = *pp;void *value = p->value;*pp = p->link;FREE(p);table->length--;return value;}}return NULL;
}void **Table_toArray(T table, void *end){int i, j = 0;void **array;struct binding *p;assert(table);array = ALLOC((2*table->length + 1)*sizeof(*array));for(i = 0; i < table->size; ++i){for(p = table->buckets[i]; p; p = p->link){array[j++] = (void *)p->key;array[j++] = p->value;}}array[j] = end;return array;
}void Table_free(T *table){assert(table && *table);if((*table)->length > 0){int i;struct binding *p, *q;for(i = 0; i < (*table)->size; ++i){for(p = (*table)->buckets[i]; p; p = q){q = p->link;FREE(p);}}}FREE(*table);
}


这篇关于C.Interface.And.Implementations—table(key-value系统)的实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1103234

相关文章

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

解决1093 - You can‘t specify target table报错问题及原因分析

《解决1093-Youcan‘tspecifytargettable报错问题及原因分析》MySQL1093错误因UPDATE/DELETE语句的FROM子句直接引用目标表或嵌套子查询导致,... 目录报js错原因分析具体原因解决办法方法一:使用临时表方法二:使用JOIN方法三:使用EXISTS示例总结报错原

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

golang程序打包成脚本部署到Linux系统方式

《golang程序打包成脚本部署到Linux系统方式》Golang程序通过本地编译(设置GOOS为linux生成无后缀二进制文件),上传至Linux服务器后赋权执行,使用nohup命令实现后台运行,完... 目录本地编译golang程序上传Golang二进制文件到linux服务器总结本地编译Golang程序

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

mybatis执行insert返回id实现详解

《mybatis执行insert返回id实现详解》MyBatis插入操作默认返回受影响行数,需通过useGeneratedKeys+keyProperty或selectKey获取主键ID,确保主键为自... 目录 两种方式获取自增 ID:1. ​​useGeneratedKeys+keyProperty(推

Spring Boot集成Druid实现数据源管理与监控的详细步骤

《SpringBoot集成Druid实现数据源管理与监控的详细步骤》本文介绍如何在SpringBoot项目中集成Druid数据库连接池,包括环境搭建、Maven依赖配置、SpringBoot配置文件... 目录1. 引言1.1 环境准备1.2 Druid介绍2. 配置Druid连接池3. 查看Druid监控