線性表(順序表)的逆置(完整程序)

#include<stdio.h> #include<stdlib.h> #define OK 1 #define ERROR -1 #define MAX_SIZE 100 typedef int Status; typedef int ElemType; typedef struct sqlist { ElemType Elem_array[MAX_SIZE]; int
相關文章
相關標籤/搜索