learn-data-structures/README.md

19 lines
951 B
Markdown
Raw Permalink Normal View History

2021-11-16 21:54:47 +08:00
## 数据结构(C语言)
2022-01-03 11:09:34 +08:00
此笔记面向初学者基于C语言从零实现各种常见数据结构。其中部分封装为库且经过内存检测。
2021-11-16 11:22:40 +08:00
2021-11-16 21:54:47 +08:00
在线阅读:[https://lookcos.cn/archives/1120.html](https://lookcos.cn/archives/1120.html)
2021-10-25 22:23:41 +08:00
2021-11-26 23:33:04 +08:00
2021-11-16 21:52:25 +08:00
## 参考资料
- 阮一峰. C语言教程. [https://wangdoc.com/clang/intro.html](https://wangdoc.com/clang/intro.html).
- antirez. Redis3.2.9. [https://github.com/redis/redis/releases/tag/3.2.9](https://github.com/redis/redis/releases/tag/3.2.9)
- antirez. Redis6.0.0. [https://github.com/redis/redis/releases/tag/6.0.0](https://github.com/redis/redis/releases/tag/6.0.0)
- 黄健宏.《Redis设计与实现》. [http://redisbook.com/](http://redisbook.com/)
2021-11-17 21:16:57 +08:00
- 黄建宏.带有详细注释的Redis3.0源码. [https://github.com/huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated)
2021-11-16 21:52:25 +08:00
2021-11-16 11:22:40 +08:00
## Future
2022-01-03 11:09:34 +08:00
后面还有挺多要更新的,跳表、红黑树等。