數據結構複習之順序方式存儲的線性表實現

#include <stdio.h> #include <stdlib.h> #include<malloc.h> //定義各類狀態 #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define INFEASIBLE -1 #define OVERFLOW -2 //線性表存儲空間的初始量和增量 #define LIST
相關文章
相關標籤/搜索