/*
檔名稱:專案.cbp
作 者:劉晨筱
完成日期:2023年12月1日
版 本 號:v1.0
問題描述:定義鏈棧儲存結構,實現其基本運算,並完成測試。
輸入描述:無
程式輸出:測試資料
*/
架構:
listack.h檔案**:
#ifndef listack_h_included
#define listack_h_included
#include #include 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
listack.cpp檔案**:
[cpp] view plaincopy
//鏈棧基本運算函式
#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");
}
main.cpp檔案**:#include "listack.h"
int main()
printf("\n");
printf("(8)鏈棧為%s\n",(stackempty(s)?"空":"非空"));
printf("(9)釋放鏈棧\n");
destroystack(s);
return 0;
}
執行結果:
第六周上機實踐 專案2 建立鏈棧演算法庫
檔名稱 test.cpp 完成日期 2015年10月05日 版本 v1.0 問題描述 定義鏈棧儲存結構,實現其基本運算,並完成測試。輸入描述 無 程式輸出 輸出所得結果 1.標頭檔案 listack.h,包含定義鏈棧資料結構的 巨集定義 要實現演算法的函式的宣告 ifndef listack h i...
第六周專案2 建立鏈棧演算法庫
問題及 定義鏈棧儲存結構,實現其基本運算,並完成測試。標頭檔案listack.h all right reserved 檔名稱 sqstack.h sqstack.cpp 完成日期 2015.10.05 ifndef listack h included define listack h inclu...
第六周 專案2 建立鏈棧演算法庫
2015,煙台大學計算機控制工程學院 檔名稱 listake.cpp 完成日期 2015年10月9日 問題描述 建立鏈棧演算法庫 專案要求 定義鏈棧儲存結構,實現其基本運算,並完成測試 1 建立標頭檔案listake.h ifndef listack h included define listac...