摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. ftp.h #ifndef ftp_H #define ftp_H #include "types.h" #include "socket.h" #ifdef __cplusplus extern "C" { #endif int ftp_login( 阅读全文
posted @ 2021-09-24 14:54 chenyuxin 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. byteArray.h #ifndef bytesArray_H #define bytesArray_H #include "types.h" //字节数组集合 typedef struct { byte **dataSet; //指针数组,存放着每 阅读全文
posted @ 2021-09-08 18:02 chenyuxin 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. array.h #ifndef array_H #define array_H #include <stddef.h> #include <sys/types.h> #include "delegate.h" //动态数组,能够动态的进行扩容,支持多种 阅读全文
posted @ 2021-09-02 12:50 chenyuxin 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. linkList.h #ifndef linkList_H #define linkList_H #include <stddef.h> #include "delegate.h" //链表节点 typedef struct linkNode { vo 阅读全文
posted @ 2021-09-02 12:36 chenyuxin 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 联系作者:645779719@qq.com 阅读全文
posted @ 2021-09-02 12:34 chenyuxin 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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 阅读(90) 评论(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) 编辑