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