問題及**:
/*
* 檔名稱:xxy.
* 作 者:徐瀟雨
* 完成日期:2017 年 9 月 29 日
* 版 本 號:v1.0
* * 問題描述:順序棧演算法庫採用程式的多檔案組織形式,包括兩個檔案:
標頭檔案:sqstack.h,包含定義順序棧資料結構的**、巨集定義、要實現演算法的函式的宣告;建立雙鏈表的演算法庫。
原始檔:sqstack.cpp,包含實現各種演算法的函式的定義
建立如上的兩個檔案,在同一專案(project)中再建立乙個原始檔(如main.cpp),編制main函式,完成相關的測試工作。
* 輸入描述:無需輸入
* 程式輸出:建立的順序棧:是否為空/棧長度/從棧頂到棧底元素/出棧序列
*/
#include #include "sqstack.h"
int main()
printf("\n");
printf("(8)棧為%s\n",(stackempty(s)?"空":"非空"));
printf("(9)釋放棧\n");
destroystack(s);
return 0;
}
sqstack.h
#ifndef sqstack_h_included
#define sqstack_h_included
#define maxsize 100
typedef char elemtype;
typedef struct
sqstack; //順序棧型別定義
void initstack(sqstack *&s); //初始化棧
void destroystack(sqstack *&s); //銷毀棧
bool stackempty(sqstack *s); //棧是否為空
int stacklength(sqstack *s); //返回棧中元素個數——棧長度
bool push(sqstack *&s,elemtype e); //入棧
bool pop(sqstack *&s,elemtype &e); //出棧
bool gettop(sqstack *s,elemtype &e); //取棧頂資料元素
void dispstack(sqstack *s); //輸出棧
#endif // sqstack_h_included
sqstack.cpp
#include #include #include "sqstack.h"
void initstack(sqstack *&s)
void destroystack(sqstack *&s)
int stacklength(sqstack *s) //返回棧中元素個數——棧長度
bool stackempty(sqstack *s)
bool push(sqstack *&s,elemtype e)
bool pop(sqstack *&s,elemtype &e)
bool gettop(sqstack *s,elemtype &e)
void dispstack(sqstack *s) //輸出棧
執行結果:
知識點總結:
標頭檔案sqstack.h中定義資料結構並宣告用於完成基本運算的函式。在sqstack.cpp中實現這些函式,並在main函式中完成測試。
學習心得:
首先應該把棧的基礎知識弄明白,然後看看**,理解並運用。
第五周 專案 1 建立順序棧演算法庫
all right reserved.檔名稱 test.cpp 完成日期 2016年9月23日 版本號 v1.2.5 問題描述 定義順序棧儲存結構,實現其基本運算。程式輸入 無。程式輸出 棧的基本運算。ifndef sqstack h included define sqstack h includ...
第五周 專案1 建立順序棧演算法庫
檔名稱 1 sqstack.h 2 sqstack.cpp 作 者 林穎 完成日期 2016年9月25日 問題描述 定義順序棧儲存結構,實現其基本運算,並完成測試。輸入描述 無。程式輸出 測試內容。sqstack.h部分 define maxsize 100 typedef char elemtyp...
第五周專案1 建立順序棧演算法庫
問題 檔名稱 專案1.cpp 作 者 陳晨 完成日期 2016年9月25日 版 本 號 v1.0 問題描述 定義順序棧儲存結構,實現其基本運算,並完成測試。輸入描述 無 程式輸出 測試資料 標頭檔案sqstack.h include include define maxsize 100 typede...