摘要: #include <stdio.h>#include <stdlib.h> #define ERROR 0#define OK 1 typedef struct Vector { int size,length; int *data; } Vector; void init(Vector *vect 阅读全文
posted @ 2019-11-09 15:23 马猴烧酒孟优秀 阅读(301) 评论(0) 推荐(0) 编辑