摘要: #define LIST_INIT_SIZE 100#define LISTINCREMENT 10#define ERROR 0#define OK 1#define OVERFLOW -2#include <iostream>#include <malloc.h>#include <stdlib.h>using namespace std;struct sqlist{ int *elem; int length; int listsize;};int InitList_Sq(sqlist &L){ L.elem=(int*)malloc(LIST 阅读全文
posted @ 2012-11-20 11:37 byfei 阅读(165) 评论(0) 推荐(0)