c c++ 线性表之顺序存储结构
//在c++ builder 调试通过
#include
table initTable() { table t; t.head=(int*)malloc (Size*sizeof(int));//分配内存 if (!t.head) { printf("初始化失败"); exit(0); } t.length=0; t.size=Size; return t; }
void displayTable(table t) { for (int i=0; i < t.length; i++) { printf("%d ",t.head[i]); }
共有 0 条评论