会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小白菜
博客园
首页
新随笔
联系
订阅
管理
2021年9月24日
Linux/Unix 系统编程 — FTP客户端
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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
阅读(220)
评论(0)
推荐(0)
2021年9月8日
数据结构与算法9 — 二维动态字节数组
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. byteArray.h #ifndef bytesArray_H #define bytesArray_H #include "types.h" //字节数组集合 typedef struct { byte **dataSet; //指针数组,存放着每
阅读全文
posted @ 2021-09-08 18:02 chenyuxin
阅读(71)
评论(0)
推荐(0)
2021年9月2日
数据结构与算法8 — 动态数组
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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
阅读(78)
评论(0)
推荐(0)
数据结构与算法7 — 单链表
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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
阅读(57)
评论(0)
推荐(0)
数据结构与算法6 — 高并发哈希表
摘要: 联系作者:645779719@qq.com
阅读全文
posted @ 2021-09-02 12:34 chenyuxin
阅读(16)
评论(0)
推荐(0)
2021年9月1日
数据结构与算法5 — 哈希表
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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
阅读(111)
评论(0)
推荐(0)
数据结构与算法4 — 高并发栈
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. concurrentStack.h #ifndef concurrentStack_H #define concurrentStack_H #include "types.h" #include <pthread.h> //栈节点 typedef st
阅读全文
posted @ 2021-09-01 16:12 chenyuxin
阅读(73)
评论(0)
推荐(0)
数据结构与算法3 — 高并发队列
摘要: 联系作者:645779719@qq.com
阅读全文
posted @ 2021-09-01 16:11 chenyuxin
阅读(25)
评论(0)
推荐(0)
数据结构与算法2 — 栈
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 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
阅读(51)
评论(0)
推荐(0)
数据结构与算法1 — 循环队列
摘要: 尊重作者劳动成果,转载请注明出处,谢谢! 1. queue.h #ifndef queue_H #define queue_H #include <stddef.h> //循环队列,内部结构为数组,提供先进先出的数据访问方式,支持多种数据类型,包括:int、struct等 typedef struc
阅读全文
posted @ 2021-09-01 15:40 chenyuxin
阅读(64)
评论(0)
推荐(0)
下一页
公告