數據結構C語言版--靜態順序表的基本功能實現(一)

/* * 功能:建立一個線性表,並輸出 * 靜態分配內存 */ #include<stdio.h> //stdio.h是C的標準I/O庫 //#include<iostream> //iostream是C++的標準I/O庫 //using namespace std; //命名空間 #define LIST_INIT_SIZE 5 //#define是宏定義 //1。定義結構體 //定義結構
相關文章
相關標籤/搜索