問題與**
/*
*檔名稱:head.h,main.cpp,zdy.cpp
*完成日期:2023年10月30日
*版本號:v1.0
* *問題描述: 建立順序棧演算法庫
*輸入描述:無
*程式輸出:若干資料
*/
#include#include#include#define maxsize 99
typedef char elemtype;
typedef struct
sqstack;
void initstack(sqstack *&s);
void destroystack(sqstack *&s);
bool stackempty(sqstack *s);
bool push(sqstack *&s,elemtype e);
bool pop(sqstack *&s, elemtype &e);
bool gettop(sqstack *s,elemtype &e);
int returnlength(sqstack *s);
void dispstack(sqstack *s);
#include"head.h"
int main()
printf("\n");
printf("(8)棧為%s\n",(stackempty(s)?"空":"非空"));
printf("(9)釋放棧\n");
destroystack(s);
return 0;
}
#include"head.h"
void initstack(sqstack *&s)
void destroystack(sqstack *&s)
bool stackempty(sqstack *s)
bool push(sqstack *&s,elemtype e)
bool pop(sqstack *&s, elemtype &e)
bool gettop(sqstack *s,elemtype &e)
int returnlength(sqstack *s)
void dispstack(sqstack *s)
執行結果
知識點總結
需要注意是否需要進行棧上溢位,棧下溢位的判斷,另外,我認為,即使是「抄之有道」,也不
應該是簡單的理解後的複製貼上,我認為,**還是需要自己打一下的,可以加深印象和理解。
第六周 專案1 建立順序棧演算法庫
all right reserved.檔名稱 shunxuzhan.cpp 完成日期 2015年10月9日 問題描述 定義順序棧儲存結構,實現其基本運算,並完成測試。標頭檔案 sqstack.h,包含定義順序棧資料結構的 巨集定義 要實現演算法的函式的宣告 原始檔 sqstack.cpp,包含實現各...
第六周 專案1 建立順序棧演算法庫
void initstack sqstack s 初始化棧 void destroystack sqstack s 銷毀棧 bool stackempty sqstack s 棧是否為空 int stacklength sqstack s 返回棧中元素個數 棧長度 bool push sqstack...
第六周專案1 建立順序棧演算法庫
煙台大學計算機與控制工程學院 檔名稱 第6周專案1 建立順序棧演算法庫.cpp 作 者 楊惠娟 完成日期 2015年10月12日 版 本 號 v1.0 問題描述 定義順序棧儲存結構,實現其基本運算,並完成測試。輸入描述 若干資料。程式輸出 各個步驟的文字敘述及其資料的輸出。1 標頭檔案 includ...