数据结构线性表的两种存储形式顺序表和单链表的比较

#include <iostream> #include <iostream> #include<stdio.h> #include<malloc.h> #define MaxSize 50 using namespace std; typedef char ElemType; typedef struct { ElemType data[MaxSize]; int length;
相关文章
相关标签/搜索