c c++ 线性表之顺序存储结构

//在c++ builder 调试通过
#include #include using namespace std; #define Size 5typedef struct Table {   int *head;     int length;     int size; }table;
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]);     }    

c c++ 线性表之顺序存储结构最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/11902.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>