數據結構線性表的兩種存儲形式順序表和單鏈表的比較

#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;
相關文章
相關標籤/搜索