摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. hash.h #ifndef hash_H #define hash_H #include <stddef.h> #include <sys/types.h> //哈希表节点,链表结构 typedef struct hashNode { char *k 阅读全文
posted @ 2021-09-01 18:16 chenyuxin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. concurrentStack.h #ifndef concurrentStack_H #define concurrentStack_H #include "types.h" #include <pthread.h> //栈节点 typedef st 阅读全文
posted @ 2021-09-01 16:12 chenyuxin 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 联系作者:645779719@qq.com 阅读全文
posted @ 2021-09-01 16:11 chenyuxin 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. stack.h #ifndef stack_H #define stack_H #include <stddef.h> #include <sys/types.h> //栈,内部结构为数组,提供后进先出的数据访问方式,支持多种数据类型,包括:int、s 阅读全文
posted @ 2021-09-01 16:02 chenyuxin 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. queue.h #ifndef queue_H #define queue_H #include <stddef.h> //循环队列,内部结构为数组,提供先进先出的数据访问方式,支持多种数据类型,包括:int、struct等 typedef struc 阅读全文
posted @ 2021-09-01 15:40 chenyuxin 阅读(54) 评论(0) 推荐(0) 编辑