C++ 线性表的基本操做

#include <stdio.h> #include <stdlib.h> #define MAXSIZE 5 #define ERROR -1 typedef int ElementType; typedef int Position; typedef struct LNode *List; struct LNode { ElementType Data[MAXSIZE]; Posi
相关文章
相关标签/搜索