摘要:
/** * 线性表 **/#include "stdio.h"#include <stdlib.h>#include <iostream.h>#define LIST_MAX_LENGTH 100 //线性表的最大长度#define OK 1#define ERROR 0//定义线性表结构typedef struct{ int *item; //指向存放线性表中数据元素的基地址 int length; //线性表的当前长度 ... 阅读全文
posted @ 2013-02-23 17:52
何长春
阅读(198)
评论(0)
推荐(0)

浙公网安备 33010602011771号