摘要:
尊重作者劳动成果,转载请注明出处,谢谢! 1. hash.h #ifndef hash_H #define hash_H #include <stddef.h> #include <sys/types.h> //哈希表节点,链表结构 typedef struct hashNode { char *k 阅读全文
摘要:
尊重作者劳动成果,转载请注明出处,谢谢! 1. concurrentStack.h #ifndef concurrentStack_H #define concurrentStack_H #include "types.h" #include <pthread.h> //栈节点 typedef st 阅读全文
摘要:
联系作者:645779719@qq.com 阅读全文
摘要:
尊重作者劳动成果,转载请注明出处,谢谢! 1. stack.h #ifndef stack_H #define stack_H #include <stddef.h> #include <sys/types.h> //栈,内部结构为数组,提供后进先出的数据访问方式,支持多种数据类型,包括:int、s 阅读全文
摘要:
尊重作者劳动成果,转载请注明出处,谢谢! 1. queue.h #ifndef queue_H #define queue_H #include <stddef.h> //循环队列,内部结构为数组,提供先进先出的数据访问方式,支持多种数据类型,包括:int、struct等 typedef struc 阅读全文