随笔分类 -  C语言类

记录c语言领域的相关知识,数据结构,底层实现等
摘要:1.数组实现的栈 #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAXSIZE 5 /** *数组实现的栈,缺点,容量固定 **/ typedef struct{ int data[MAXSIZE]; int i 阅读全文
posted @ 2020-02-16 14:10 漂渡 阅读(379) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> //#define LEN sizeof(LinkedList); typedef struct Student{ int score; char name[10]; struct 阅读全文
posted @ 2020-02-15 14:26 漂渡 阅读(778) 评论(0) 推荐(0) 编辑
摘要:* MongoDB vs Redis vs Tokyo Tyrant(原文链接:http://www.cnblogs.com/riceball/archive/2010/03/05/MongoDB_Vs_Redis_Vs_TokyoTyrant.html) 准备对MongoDB, Redis以及To 阅读全文
posted @ 2017-12-26 14:11 漂渡 阅读(229) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示