
编程实践
poject
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
线性查询优化,哨兵方法
线性查找 哨兵查找原创 2024-10-09 09:24:53 · 375 阅读 · 0 评论 -
基于c 实现 FIFO
fifo c实现原创 2023-12-04 10:23:22 · 1365 阅读 · 0 评论 -
常用数据结构 双向循环链表(一)
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct _listLink tListLink; typedef struct _listNode tListNode; typedef struct _listLink tListLink; typedef struc...原创 2019-08-07 15:00:16 · 161 阅读 · 0 评论 -
常用数据结构 双向循环链表(二)
#include <stdio.h> #include <stdlib.h> #include <string.h> #define debug_on 1 typedef unsigned int u32; typedef unsigned char u8; //链表函数操作返回状态 typedef enum{ LIST_SUCCESS = 0...原创 2019-08-07 17:45:09 · 140 阅读 · 0 评论 -
常用数据结构 队列 FIFO(四)
1:、实现一 #include "stdio.h" #include "stdlib.h" #include "string.h" #include "assert.h" #define RET_SUCESS (u32)0 #define RET_FAILED (u32)1 #define true (u8)1 #define false (u8)0 typedef unsigned c...原创 2019-08-17 23:07:04 · 522 阅读 · 0 评论