1.標頭檔案:listack.h,包含定義鏈棧資料結構的**、巨集定義、要實現演算法的函式的宣告;
#ifndef listack_h_included
#define listack_h_included
typedef char elemtype;
typedef struct linknode
listack; //鏈棧型別定義
void initstack(listack *&s); //初始化棧
void destroystack(listack *&s); //銷毀棧
int stacklength(listack *s); //返回棧長度
bool stackempty(listack *s); //判斷棧是否為空
void push(listack *&s,elemtype e); //入棧
bool pop(listack *&s,elemtype &e); //出棧
bool gettop(listack *s,elemtype &e); //取棧頂元素
void dispstack(listack *s); //輸出棧中元素
#endif // listack_h_included
2.原始檔:listack.cpp,包含實現各種演算法的函式的定義
#include #include #include "listack.h"
void initstack(listack *&s) //初始化棧
void destroystack(listack *&s) //銷毀棧
free(s); //s指向尾結點,釋放其空間
}int stacklength(listack *s) //返回棧長度
return(i);
}bool stackempty(listack *s) //判斷棧是否為空
void push(listack *&s,elemtype e) //入棧
bool pop(listack *&s,elemtype &e) //出棧
bool gettop(listack *s,elemtype &e) //取棧頂元素
void dispstack(listack *s) //輸出棧中元素
printf("\n");
}
3.在同一專案(project)中建立乙個原始檔(如main.cpp),編制main函式,完成相關的測試工作。 例:
#include #include "listack.h"
int main()
printf("\n");
printf("(8)鏈棧為%s\n",(stackempty(s)?"空":"非空"));
printf("(9)釋放鏈棧\n");
第六周專案二資料結構之自建演算法庫 鏈棧
檔名稱 listack.cpp,main.cpp,listack.h 完成日期 2015年10月5日 版本號 codeblocks 問題描述 建立鏈棧演算法庫程式的多檔案組織 輸入描述 無 程式輸出 執行的結果。ifndef listack h included define listack h i...
第六周專案一
檔名稱 aaa.cpp 作 者 孫超 完成日期 2016年4月5日 版 本 號 v1.0 問題描述 設計乙個簡單的分數類,完成對分數的幾個運算。include using namespace std class cfraction cfraction cfraction int nu,int de ...
第六周專案4
ifndef sqstack h included define sqstack h included define maxsize 100 typedef int elemtype typedef struct sqstack 順序棧型別定義 void initstack sqstack s 初始...