随笔分类 -  数据结构

数据结构
数据结构之C语言模拟整数数组实现
摘要:1 #include 2 #include 3 #include 4 5 typedef struct Arr 6 { 7 int * pBase = NULL; //数组首地址 8 int cnt; //当前元素个数 9 int len; //数... 阅读全文
posted @ 2015-05-06 18:23 c3tc3tc3t 阅读(283) 评论(0) 推荐(0)