摘要: 1 #include 2 #include 3 #include//exit() 4 5 6 struct Arr//定义了一个数据类型,数据类型名字Arr 7 { 8 9 int *pbase;//基地址指针 10 int lenth;//数组长度 11 int cent;//数组实际大小 12 //int increment;//增战因子 13 }; 14 void init_arr(struct Arr *array, int lenth); 15 bool append_arr(struct Arr *array,int dat... 阅读全文
posted @ 2013-11-22 15:36 weilq 阅读(707) 评论(0) 推荐(0) 编辑